1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-25 15:29:34 +00:00

Merge pull request #80 from taylorza/master

Fixed putchar for ZX Spectrum
This commit is contained in:
Steven Hugg 2021-09-06 11:38:23 -05:00 committed by GitHub
commit 3d22e5d614
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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