Skip to content

compiler bugsΒ #29

@disaderp

Description

@disaderp

char c_help_text[50] = "Help commands: \n\0"; /* terminated with 0*/

  • cannot declare variable with fixed size
  • escaping characters do not work: \0 should dump X0000000 instead ASCII code for \ and 0 are 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;

Metadata

Metadata

Assignees

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions