1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-10-11 12:23:45 +00:00

Added another known problem

This commit is contained in:
jespergravgaard 2017-10-23 01:23:39 +02:00
parent cd2c50b8a8
commit 0d9a0a84f8

View File

@ -1,6 +1,7 @@
Known Problems
- Increment/decrement of value pointed to by piinter does not work. eg. byte* BGCOL = $d020; (*BGCOL)++;
- Arrays / strings allocated inline destroy functions (because they are allocated where the call enters.
- Classic for() does not allow assignment as increment, eg. for(byte i=0;i<25;i=i+2) {}
Features
- Move the main code into a main() function, and disallow code outside functions. The main function per default has no parameters and exits with RTS.