File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments