1
0
mirror of https://github.com/dschmenk/PLASMA.git synced 2025-04-05 03:37:43 +00:00

Fix gets()

This commit is contained in:
David Schmenk 2018-02-04 20:53:04 -08:00
parent 16932e90f7
commit 5c322acf06

View File

@ -499,12 +499,14 @@ void call(uword pc)
PUSH(getchar());
break;
case 8: // LIBRARY STDLIB::GETS
c = POP;
putchar(c);
gets(sz);
for (i = 0; sz[i]; i++)
mem_data[0x200 + i] = sz[i];
mem_data[0x200 + i] = 0;
mem_data[0x1FF] = i;
PUSH(i);
PUSH(0x1FF);
break;
default:
printf("\nUnimplemented call code:$%02X\n", mem_data[pc - 1]);