Skip to content

Commit 75b51e8

Browse files
author
cheveron
authored
Update 13_data.asm
1 parent cbfcf30 commit 75b51e8

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

basic/modules/13_data.asm

+8-5
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,9 @@ tbl_offs equ $ - tbl_addrs
218218
; // used in 14_screen_40
219219
; // attributes are stored internally with the foreground in the high nibble and the background in the low nibble
220220
; // this table converts an attribute to its 64-color equivalent in the default palette.
221+
221222
org $3f00
223+
222224
attributes:
223225
defb $00, $08, $10, $18, $20, $28, $30, $38, $80, $88, $90, $98, $a0, $a8, $b0, $b8; background 0-15, foreground 0
224226
defb $01, $09, $11, $19, $21, $29, $31, $39, $81, $89, $91, $99, $a1, $a9, $b1, $b9; background 0-15, foreground 1
@@ -241,6 +243,12 @@ attributes:
241243

242244
org $4000
243245

246+
; // used in 15_files
247+
dir_msg:
248+
defb "<DIR> ", 0;
249+
250+
; // the next 576 bytes are used for localization
251+
244252
; // used in 06_screen_80
245253
scrl_mssg:
246254
defb "Scroll?", 0;
@@ -289,11 +297,6 @@ rpt_mesgs:
289297

290298
org scrl_mssg + 576
291299

292-
; // used in 15_files
293-
dir_msg:
294-
defb "<DIR> ", 0;
295-
296-
; // the next 576 bytes are used for localization
297300

298301
; // used in 07_editor
299302
ed_f_keys_t:

0 commit comments

Comments
 (0)