We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f171572 commit 6f6a0b6Copy full SHA for 6f6a0b6
basic/modules/08_executive.asm
@@ -1221,13 +1221,17 @@ out_ch_1:
1221
call po_token;
1222
pop de;
1223
ret;
1224
+
1225
out_ch_2:
1226
+ push hl;
1227
ld hl, flags;
1228
res 0, (hl);
1229
cp ' ';
1230
jr nz, out_ch_3;
1231
set 0, (hl);
1232
1233
out_ch_3:
1234
+ pop hl;
1235
rst print_a; // print character
1236
ret; // end of subroutine
1237
0 commit comments