1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-01 05:41:31 +00:00

Fixed putchar for ZX Spectrum

This commit is contained in:
Chris Taylor 2021-08-14 18:23:00 -04:00
parent bd00d98b77
commit c8e639cbd6

View File

@ -17,6 +17,7 @@ int putchar(int ch) {
ld a,4 (ix)
rst 0x10
__endasm;
return ch;
}
void beep(int divisor, int duration) {