-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
char c_help_text[50] = "Help commands: \n\0"; /* terminated with 0*/
- cannot declare variable with fixed size
- escaping characters do not work:
\0should dumpX0000000instead ASCII code for\and0are put
Files to check:FUNC.h,sample.cmm;
asm("X[" + &x + "]");
- mixed asm inserts does not work
File to check:HAL.h;
for(i = 0; i<length; i++){ print(*text); text++; }
- For loops do not work
File to check:HAL.h;
while (*text != 0){ print(*text); text++; }
- While loops do not work
File to check:HAL.h;
Make errors more informative;
logarytm and disaderp