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
1 changed files with 1 additions and 0 deletions

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) {