trunk/src/emu/video/huc6272.c
r17429 | r17430 | |
16 | 16 | // device type definition |
17 | 17 | const device_type huc6272 = &device_creator<huc6272_device>; |
18 | 18 | |
19 | | static ADDRESS_MAP_START( huc6272_vram, AS_0, 16, huc6272_device ) |
| 19 | static ADDRESS_MAP_START( huc6272_vram, AS_0, 32, huc6272_device ) |
20 | 20 | AM_RANGE(0x000000, 0x0fffff) AM_RAM |
21 | 21 | AM_RANGE(0x100000, 0x1fffff) AM_RAM |
22 | 22 | ADDRESS_MAP_END |
r17429 | r17430 | |
40 | 40 | // read_dword - read a dword at the given address |
41 | 41 | //------------------------------------------------- |
42 | 42 | |
43 | | inline UINT32 huc6272_device::read_word(offs_t address) |
| 43 | inline UINT32 huc6272_device::read_dword(offs_t address) |
44 | 44 | { |
45 | | return space()->read_word(address << 1); |
| 45 | return space()->read_dword(address << 2); |
46 | 46 | } |
47 | 47 | |
48 | 48 | |
r17429 | r17430 | |
50 | 50 | // write_dword - write a dword at the given address |
51 | 51 | //------------------------------------------------- |
52 | 52 | |
53 | | inline void huc6272_device::write_word(offs_t address, UINT32 data) |
| 53 | inline void huc6272_device::write_dword(offs_t address, UINT32 data) |
54 | 54 | { |
55 | | space()->write_word(address << 1, data); |
| 55 | space()->write_dword(address << 2, data); |
56 | 56 | } |
57 | 57 | |
58 | 58 | //************************************************************************** |
r17429 | r17430 | |
66 | 66 | huc6272_device::huc6272_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
67 | 67 | : device_t(mconfig, huc6272, "huc6272", tag, owner, clock), |
68 | 68 | device_memory_interface(mconfig, *this), |
69 | | m_space_config("videoram", ENDIANNESS_LITTLE, 16, 32, 0, NULL, *ADDRESS_MAP_NAME(huc6272_vram)) |
| 69 | m_space_config("videoram", ENDIANNESS_LITTLE, 32, 32, 0, NULL, *ADDRESS_MAP_NAME(huc6272_vram)) |
70 | 70 | { |
71 | 71 | |
72 | 72 | } |
r17429 | r17430 | |
110 | 110 | UINT32 res = 0; |
111 | 111 | |
112 | 112 | if((offset & 1) == 0) |
| 113 | { |
| 114 | /* |
| 115 | xxxx xxxx ---- ---- ---- ---- ---- ---- Sub Channel Buffer |
| 116 | ---- ---- x--- ---- ---- ---- ---- ---- SCSI RST flag |
| 117 | ---- ---- -x-- ---- ---- ---- ---- ---- SCSI BUSY flag |
| 118 | ---- ---- --x- ---- ---- ---- ---- ---- SCSI REQ flag |
| 119 | ---- ---- ---x ---- ---- ---- ---- ---- SCSI MSG flag |
| 120 | ---- ---- ---- x--- ---- ---- ---- ---- SCSI CD flag |
| 121 | ---- ---- ---- -x-- ---- ---- ---- ---- SCSI IO flag |
| 122 | ---- ---- ---- --x- ---- ---- ---- ---- SCSI SEL flag |
| 123 | ---- ---- ---- ---- -x-- ---- ---- ---- SCSI IRQ pending |
| 124 | ---- ---- ---- ---- --x- ---- ---- ---- DMA IRQ pending |
| 125 | ---- ---- ---- ---- ---x ---- ---- ---- CD Sub Channel IRQ pending |
| 126 | ---- ---- ---- ---- ---- x--- ---- ---- Raster IRQ pending |
| 127 | ---- ---- ---- ---- ---- -x-- ---- ---- ADPCM IRQ pending |
| 128 | ---- ---- ---- ---- ---- ---- -xxx xxxx register read-back |
| 129 | */ |
113 | 130 | res = m_register & 0x7f; |
| 131 | res |= (0) << 16; |
| 132 | } |
114 | 133 | else |
115 | 134 | { |
116 | 135 | switch(m_register) |
r17429 | r17430 | |
127 | 146 | break; |
128 | 147 | |
129 | 148 | case 0x0e: |
130 | | res = read_word((m_kram_addr_r)|(m_kram_page_r<<18)); |
| 149 | res = read_dword((m_kram_addr_r)|(m_kram_page_r<<18)); |
131 | 150 | m_kram_addr_r += (m_kram_inc_r & 0x100) ? ((m_kram_inc_r & 0xff) - 0x100) : (m_kram_inc_r & 0xff); |
132 | 151 | break; |
| 152 | |
| 153 | case 0x0f: |
| 154 | res = m_page_setting; |
| 155 | break; |
133 | 156 | //default: printf("%04x\n",m_register); |
134 | 157 | } |
135 | 158 | } |
r17429 | r17430 | |
145 | 168 | { |
146 | 169 | switch(m_register) |
147 | 170 | { |
| 171 | |
| 172 | case 0x09: // DMA addr |
| 173 | //printf("%08x DMA ADDR\n",data); |
| 174 | break; |
| 175 | case 0x0a: // DMA size |
| 176 | //printf("%08x DMA SIZE\n",data); |
| 177 | break; |
| 178 | case 0x0b: // DMA status |
| 179 | //printf("%08x DMA STATUS\n",data); |
| 180 | break; |
148 | 181 | /* |
149 | 182 | ---- ---- ---- ---- ---- |
150 | 183 | */ |
r17429 | r17430 | |
161 | 194 | break; |
162 | 195 | |
163 | 196 | case 0x0e: // KRAM write VRAM |
164 | | write_word((m_kram_addr_w)|(m_kram_page_w<<18),data & 0xffff); /* TODO: there are some 32-bits accesses during BIOS? */ |
| 197 | write_dword((m_kram_addr_w)|(m_kram_page_w<<18),data); /* TODO: there are some 32-bits accesses during BIOS? */ |
165 | 198 | m_kram_addr_w += (m_kram_inc_w & 0x100) ? ((m_kram_inc_w & 0xff) - 0x100) : (m_kram_inc_w & 0xff); |
166 | 199 | break; |
167 | 200 | |
168 | | //default: printf("%04x %04x\n",m_register,data); |
| 201 | /* |
| 202 | ---x ---- ---- ---- ADPCM page setting |
| 203 | ---- ---x ---- ---- RAINBOW page setting |
| 204 | ---- ---- ---x ---- BG page setting |
| 205 | ---- ---- ---- ---x SCSI page setting |
| 206 | */ |
| 207 | case 0x0f: |
| 208 | m_page_setting = data; |
| 209 | break; |
| 210 | |
| 211 | case 0x13: |
| 212 | m_micro_prg.addr = data & 0xf; |
| 213 | break; |
| 214 | |
| 215 | case 0x14: |
| 216 | m_micro_prg.data[m_micro_prg.addr] = data & 0xffff; |
| 217 | m_micro_prg.addr++; |
| 218 | m_micro_prg.addr &= 0xf; |
| 219 | break; |
| 220 | |
| 221 | case 0x15: |
| 222 | m_micro_prg.ctrl = data & 1; |
| 223 | break; |
| 224 | |
| 225 | //default: printf("%04x %04x %08x\n",m_register,data,mem_mask); |
169 | 226 | } |
170 | 227 | } |
171 | 228 | } |