trunk/src/devices/bus/vcs/dpcplus.c
r249951 | r249952 | |
56 | 56 | m_base_bank = 0; |
57 | 57 | } |
58 | 58 | |
59 | | READ32_MEMBER(a26_rom_dpcplus_device::armrom_r) |
60 | | { |
61 | | UINT32 ret = (a26_rom_f8_device::read_rom(space, offset * 4 + 3) << 24) | |
62 | | (a26_rom_f8_device::read_rom(space, offset * 4 + 2) << 16) | |
63 | | (a26_rom_f8_device::read_rom(space, offset * 4 + 1) << 8) | |
64 | | (a26_rom_f8_device::read_rom(space, offset * 4 + 0) << 0); |
65 | | return ret; |
66 | | } |
67 | | |
68 | | WRITE32_MEMBER(a26_rom_dpcplus_device::armrom_w) |
69 | | { |
70 | | |
71 | | } |
72 | | |
73 | 59 | static ADDRESS_MAP_START( dpcplus_arm7_map, AS_PROGRAM, 32, a26_rom_dpcplus_device ) |
74 | 60 | // todo: implement all this correctly |
75 | | AM_RANGE(0x00000000, 0x00007fff) AM_READWRITE(armrom_r,armrom_w)// flash, 32k |
| 61 | //AM_RANGE(0x00000000, 0x00007fff) AM_ROM // flash, 32k |
76 | 62 | AM_RANGE(0x40000000, 0x40001fff) AM_RAM // sram, 8k |
77 | 63 | ADDRESS_MAP_END |
78 | 64 | |
trunk/src/mame/drivers/aristmk5.c
r249951 | r249952 | |
123 | 123 | U26: SGS THOMSON ST93C46 (1K (64 x 16 or 128 x 8) Serial EEPROM). |
124 | 124 | U27: SGS THOMSON ST93C46 (1K (64 x 16 or 128 x 8) Serial EEPROM). |
125 | 125 | |
126 | | U35: PHILIPS 74HC2... |
| 126 | U35: PHILIPS 74HC273. |
127 | 127 | U36: LATTICE GAL20V8B-15LJ (High Performance E2CMOS PLD Generic Array Logic, 28-Lead PLCC). |
128 | 128 | U40: Dallas Semiconductor DS1202S (Serial Timekeeping Chip). |
129 | 129 | U41: Maxim Integrated MAX705CSA (MPU Supervisory Circuits). |
r249951 | r249952 | |
144 | 144 | U71: Texas Instruments TL16C452FN (UART Interface IC Dual UART w/Prl Port & w/o FIFO). |
145 | 145 | U72: Texas Instruments TL16C452FN (UART Interface IC Dual UART w/Prl Port & w/o FIFO). |
146 | 146 | U73: CX0826 72 MHz crystal. |
| 147 | U85: ARM250: Computer system on a chip. ARM 32bit RISC processor with memory, video, and I/O controllers. |
147 | 148 | U89: Allegro MicroSystems UDN2543B (Protected quad power driver). |
148 | 149 | U149: ISSI IS41C16257-60K (256K x 16bit (4-MBIT) Dynamic RAM With Fast Page Mode). |
149 | 150 | U152: ISSI IS41C16257-60K (256K x 16bit (4-MBIT) Dynamic RAM With Fast Page Mode). |
r249951 | r249952 | |
159 | 160 | |
160 | 161 | X2: Unpopulated crystal (from factory). |
161 | 162 | |
| 163 | The 96-pin female connector at the bottom of the ROM banks is intended for a sub board |
| 164 | with two ROM sockets, that once plugged switch the ROM bank 0 with the sub board bank. |
| 165 | Just to place the clear chips without removing the U7 & U11 EPROMS. |
| 166 | |
162 | 167 | *****************************************************************************************************************/ |
163 | 168 | |
164 | 169 | #define MASTER_CLOCK XTAL_72MHz /* confirmed */ |