Thema: Idee: Novag Delta-1 code
Einzelnen Beitrag anzeigen
  #9  
Alt 08.05.2020, 11:15
hap hap ist offline
Resurrection
 
Registriert seit: 27.07.2019
Beiträge: 598
Abgegebene Danke: 221
Erhielt 2.292 Danke für 414 Beiträge
Aktivitäten Langlebigkeit
0/20 6/20
Heute Beiträge
0/3 ssssss598
Re: Novag Delta-1 code

Right, MAME fills the RAM with rand() which will be different to a real Delta-1. I don't think an SRAM chip will be 100% random at power-on, it will have a pattern. Maybe some of the bits are truly 'random' (with parameters: temperature, magnetic field, slight voltage differences, ...)

This addressing thing won't work on the real chesscomputer, it will put the ROM table before RAM:

remove:
map(0x2000, 0x20ff).mirror(0x1f00).ram(); // A13

add:
map(0x2bc0, 0x2bff).rom().region("maincpu", 0x0880);
map(0x2c00, 0x2cff).ram();
Mit Zitat antworten