Previous 199869 Revisions Next

r17424 Thursday 23rd August, 2012 at 15:31:38 UTC by Angelo Salese
Basic KRAM hook
[src/emu/video]huc6272.c huc6272.h
[src/mess/drivers]pcfx.c

trunk/src/emu/video/huc6272.c
r17423r17424
1616// device type definition
1717const device_type huc6272 = &device_creator<huc6272_device>;
1818
19static ADDRESS_MAP_START( huc6272_vram, AS_0, 16, huc6272_device )
20   AM_RANGE(0x000000, 0x0fffff) AM_RAM
21   AM_RANGE(0x100000, 0x1fffff) AM_RAM
22ADDRESS_MAP_END
1923
24
25//-------------------------------------------------
26//  memory_space_config - return a description of
27//  any address spaces owned by this device
28//-------------------------------------------------
29
30const address_space_config *huc6272_device::memory_space_config(address_spacenum spacenum) const
31{
32   return (spacenum == AS_0) ? &m_space_config : NULL;
33}
34
2035//**************************************************************************
36//  INLINE HELPERS
37//**************************************************************************
38
39//-------------------------------------------------
40//  read_dword - read a dword at the given address
41//-------------------------------------------------
42
43inline UINT32 huc6272_device::read_word(offs_t address)
44{
45   return space()->read_word(address << 1);
46}
47
48
49//-------------------------------------------------
50//  write_dword - write a dword at the given address
51//-------------------------------------------------
52
53inline void huc6272_device::write_word(offs_t address, UINT32 data)
54{
55   space()->write_word(address << 1, data);
56}
57
58//**************************************************************************
2159//  LIVE DEVICE
2260//**************************************************************************
2361
r17423r17424
2664//-------------------------------------------------
2765
2866huc6272_device::huc6272_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
29   : device_t(mconfig, huc6272, "huc6272", tag, owner, clock)
67   : device_t(mconfig, huc6272, "huc6272", tag, owner, clock),
68     device_memory_interface(mconfig, *this),
69     m_space_config("videoram", ENDIANNESS_LITTLE, 16, 32, 0, NULL, *ADDRESS_MAP_NAME(huc6272_vram))
3070{
3171
3272}
r17423r17424
65105//  READ/WRITE HANDLERS
66106//**************************************************************************
67107
68READ16_MEMBER( huc6272_device::read )
108READ32_MEMBER( huc6272_device::read )
69109{
70   return 0;
110   UINT32 res = 0;
111
112   if((offset & 1) == 0)
113      res = m_register & 0x7f;
114   else
115   {
116      switch(m_register)
117      {
118         /*
119         x--- ---- ---- ---- ----
120         */
121         case 0x0c: // KRAM load address
122            res = (m_kram_addr_r & 0x3ffff) | ((m_kram_inc_r & 0x1ff) << 18) | ((m_kram_page_r & 1) << 31);
123            break;
124
125         case 0x0d: // KRAM write address
126            res = (m_kram_addr_w & 0x3ffff) | ((m_kram_inc_w & 0x1ff) << 18) | ((m_kram_page_w & 1) << 31);
127            break;
128
129         case 0x0e:
130            res = read_word((m_kram_addr_r)|(m_kram_page_r<<18));
131            m_kram_addr_r += (m_kram_inc_r & 0x100) ? ((m_kram_inc_r & 0xff) - 0x100) : (m_kram_inc_r & 0xff);
132            break;
133         //default: printf("%04x\n",m_register);
134      }
135   }
136
137   return res;
71138}
72139
73WRITE16_MEMBER( huc6272_device::write )
140WRITE32_MEMBER( huc6272_device::write )
74141{
142   if((offset & 1) == 0)
143      m_register = data & 0x7f;
144   else
145   {
146      switch(m_register)
147      {
148         /*
149         ---- ---- ---- ---- ----
150         */
151         case 0x0c: // KRAM load address
152            m_kram_addr_r = (data & 0x0003ffff);
153            m_kram_inc_r =  (data & 0x07fc0000) >> 18;
154            m_kram_page_r = (data & 0x80000000) >> 31;
155            break;
156
157         case 0x0d: // KRAM write address
158            m_kram_addr_w = (data & 0x0003ffff);
159            m_kram_inc_w =  (data & 0x07fc0000) >> 18;
160            m_kram_page_w = (data & 0x80000000) >> 31;
161            break;
162
163         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? */
165            m_kram_addr_w += (m_kram_inc_w & 0x100) ? ((m_kram_inc_w & 0xff) - 0x100) : (m_kram_inc_w & 0xff);
166            break;
167
168         //default: printf("%04x %04x\n",m_register,data);
169      }
170   }
75171}
trunk/src/emu/video/huc6272.h
r17423r17424
1616//**************************************************************************
1717
1818#define MCFG_HUC6272_ADD(_tag,_freq) \
19   MCFG_DEVICE_ADD(_tag, huc6272, _freq) \
19   MCFG_DEVICE_ADD(_tag, huc6272, _freq)
2020
2121
2222//**************************************************************************
r17423r17424
2525
2626// ======================> huc6272_device
2727
28class huc6272_device :   public device_t
28class huc6272_device :   public device_t,
29                  public device_memory_interface
2930{
3031public:
3132   // construction/destruction
3233   huc6272_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
3334
3435   // I/O operations
35   DECLARE_WRITE16_MEMBER( write );
36   DECLARE_READ16_MEMBER( read );
36   DECLARE_WRITE32_MEMBER( write );
37   DECLARE_READ32_MEMBER( read );
3738
39
3840protected:
3941   // device-level overrides
4042   virtual void device_validity_check(validity_checker &valid) const;
4143   virtual void device_start();
4244   virtual void device_reset();
45   virtual const address_space_config *memory_space_config(address_spacenum spacenum = AS_0) const;
46
47private:
48   inline UINT32 read_word(offs_t address);
49   inline void write_word(offs_t address, UINT32 data);
50   UINT8 m_register;
51   UINT32 m_kram_addr_r, m_kram_addr_w;
52   UINT16 m_kram_inc_r,m_kram_inc_w;
53   UINT8 m_kram_page_r,m_kram_page_w;
54
55   const address_space_config      m_space_config;
4356};
4457
4558
trunk/src/mess/drivers/pcfx.c
r17423r17424
166166   AM_RANGE( 0x00000300, 0x000003FF ) AM_DEVREADWRITE16( "huc6261", huc6261_device, read, write, 0xffff )   /* HuC6261 */
167167   AM_RANGE( 0x00000400, 0x000004FF ) AM_DEVREADWRITE8( "huc6270_a", huc6270_device, read, write, 0xffff )   /* HuC6270-A */
168168   AM_RANGE( 0x00000500, 0x000005FF ) AM_DEVREADWRITE8( "huc6270_b", huc6270_device, read, write, 0xffff )   /* HuC6270-B */
169   AM_RANGE( 0x00000600, 0x000006FF ) AM_DEVREADWRITE16( "huc6272", huc6272_device, read, write, 0xffff )   /* HuC6272 */
169   AM_RANGE( 0x00000600, 0x000006FF ) AM_DEVREADWRITE( "huc6272", huc6272_device, read, write )   /* HuC6272 */
170170   AM_RANGE( 0x00000C80, 0x00000C83 ) AM_NOP
171171   AM_RANGE( 0x00000E00, 0x00000EFF ) AM_READWRITE16( irq_read, irq_write, 0xffff )   /* Interrupt controller */
172172   AM_RANGE( 0x00000F00, 0x00000FFF ) AM_NOP

Previous 199869 Revisions Next


© 1997-2024 The MAME Team