diff options
| -rw-r--r-- | testbenches/zexdoc.z80 | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/testbenches/zexdoc.z80 b/testbenches/zexdoc.z80 index da8b443..eda26dd 100644 --- a/testbenches/zexdoc.z80 +++ b/testbenches/zexdoc.z80 @@ -1181,9 +1181,8 @@ writechar: out (000h),a
ret
- ;; Print the string in (DE), terminated by '$' (024h)
+ ;; Print the string in (DE), terminated by '$' (24h)
writestr:
- push de
push af
push bc
ld c,'$'
@@ -1195,7 +1194,6 @@ writestr_loop: jp nz,writestr_loop
pop bc
pop af
- pop de
ret
msg1: .db 'Z80 instruction exerciser',10,13,'$'
|
