We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 329a5d3 commit 313c978Copy full SHA for 313c978
1 file changed
library-asm/print.asm
@@ -1,4 +1,5 @@
1
; vim:ts=4:sw=4:et:
2
+; vim:ts=4:sw=4:et:
3
; PRINT command routine
4
; Does not print attribute. Use PRINT_STR or PRINT_NUM for that
5
@@ -219,9 +220,13 @@ __PRINT_AT1_END:
219
220
ld hl, (MAXY)
221
cp l
222
jr c, __PRINT_EOL_END ; Carry if (MAXY) < d
223
+#ifndef DISABLE_SCROLL
224
ld hl, __TVFLAGS
225
set 1, (hl)
226
ld a, d
227
+#else
228
+ xor a
229
+#endif
230
231
__PRINT_EOL_END:
232
ld d, a
@@ -470,8 +475,10 @@ PRINT_AT: ; Changes cursor to ROW, COL
470
475
471
476
call __IN_SCREEN
472
477
ret nc ; Return if out of screen
478
473
479
474
480
res 1, (hl)
481
482
jp __SAVE_S_POSN
483
484
LOCAL __PRINT_COM
0 commit comments