Previous 199869 Revisions Next

r32538 Saturday 4th October, 2014 at 21:56:58 UTC by hap
fix winrun missing 3D
(this changes STATIC_COUNT from 0x100 to 0xff)
[src/emu]memory.c

trunk/src/emu/memory.c
r32537r32538
204204{
205205   STATIC_INVALID = 0,                                 // invalid - should never be used
206206   STATIC_BANK1 = 1,                                   // first memory bank
207   STATIC_BANKMAX = 252,                               // last memory bank
207   STATIC_BANKMAX = 0xfb,                              // last memory bank
208208   STATIC_NOP,                                         // NOP - reads = unmapped value; writes = no-op
209209   STATIC_UNMAP,                                       // unmapped - same as NOP except we log errors
210210   STATIC_WATCHPOINT,                                  // watchpoint - used internally

Previous 199869 Revisions Next


© 1997-2024 The MAME Team