Skip to content

Commit e4fbb0c

Browse files
author
Adam
committed
- out of order physical memory declaration
1 parent adca7b7 commit e4fbb0c

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/mame/tektronix/tek440x.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -393,14 +393,16 @@ void tek440x_state::physical_map(address_map &map)
393393

394394
// 700000-71ffff spare 0
395395
// 720000-73ffff spare 1
396-
map(0x740000, 0x747fff).rom().mirror(0x8000).region("maincpu", 0);
396+
397397
// maps 128 address range to nvram (see p2.8-3)
398398
// 721000-72107f net ram
399399
map(0x721000, 0x7210ff).rw(FUNC(tek440x_state::nvram_r), FUNC(tek440x_state::nvram_w));
400400
// 722000-722fff nvram nybbles
401401
map(0x722000, 0x722fff).rw(FUNC(tek440x_state::recall_r), FUNC(tek440x_state::recall_w));
402402
map(0x723000, 0x723fff).rw(FUNC(tek440x_state::store_r), FUNC(tek440x_state::store_w));
403-
403+
404+
map(0x740000, 0x747fff).rom().mirror(0x8000).region("maincpu", 0);
405+
404406
map(0x760000, 0x760fff).ram().mirror(0xf000); // debug RAM
405407

406408
// 780000-79ffff processor board I/O

0 commit comments

Comments
 (0)