1
0
mirror of https://github.com/cc65/cc65.git synced 2025-02-12 06:30:42 +00:00

fix whitespace

This commit is contained in:
mrdudz 2022-08-27 02:14:52 +02:00
parent 41b29d5c81
commit 168f42bb83

View File

@ -7,13 +7,13 @@ int main(void)
c_label: c_label:
asm("inx\n" asm("inx\n"
"bne %g\n", "bne %g\n",
c_label); c_label);
// this does not work // this does not work
c_label2: c_label2:
asm("inx\n" asm("inx\n"
"bne %g \n", "bne %g \n",
c_label2); c_label2);
return EXIT_SUCCESS; return EXIT_SUCCESS;
} }