psx.cpp : Move notes

This commit is contained in:
cam900 2018-07-22 00:50:45 +09:00
parent b3a4cb0b9e
commit 9b36ccc297
2 changed files with 6 additions and 17 deletions

View File

@ -18,12 +18,12 @@
#define VERBOSE_LEVEL ( 0 )
// device type definition
DEFINE_DEVICE_TYPE(CXD8514Q, cxd8514q_device, "cxd8514q", "CXD8514Q GPU")
DEFINE_DEVICE_TYPE(CXD8538Q, cxd8538q_device, "cxd8538q", "CXD8538Q GPU")
DEFINE_DEVICE_TYPE(CXD8561Q, cxd8561q_device, "cxd8561q", "CXD8561Q GPU")
DEFINE_DEVICE_TYPE(CXD8561BQ, cxd8561bq_device, "cxd8561bq", "CXD8561BQ GPU")
DEFINE_DEVICE_TYPE(CXD8561CQ, cxd8561cq_device, "cxd8561cq", "CXD8561CQ GPU")
DEFINE_DEVICE_TYPE(CXD8654Q, cxd8654q_device, "cxd8654q", "CXD8654Q GPU")
DEFINE_DEVICE_TYPE(CXD8514Q, cxd8514q_device, "cxd8514q", "CXD8514Q GPU") // VRAM
DEFINE_DEVICE_TYPE(CXD8538Q, cxd8538q_device, "cxd8538q", "CXD8538Q GPU") // VRAM
DEFINE_DEVICE_TYPE(CXD8561Q, cxd8561q_device, "cxd8561q", "CXD8561Q GPU") // SGRAM
DEFINE_DEVICE_TYPE(CXD8561BQ, cxd8561bq_device, "cxd8561bq", "CXD8561BQ GPU") // SGRAM
DEFINE_DEVICE_TYPE(CXD8561CQ, cxd8561cq_device, "cxd8561cq", "CXD8561CQ GPU") // SGRAM
DEFINE_DEVICE_TYPE(CXD8654Q, cxd8654q_device, "cxd8654q", "CXD8654Q GPU") // SGRAM
psxgpu_device::psxgpu_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, type, tag, owner, clock)
@ -44,19 +44,10 @@ void psxgpu_device::device_start()
if (type() == CXD8538Q)
{
// m_has_sgram = false; // VRAM
psx_gpu_init( 1 );
}
else
{
// if (type() == CXD8514Q)
// {
// m_has_sgram = false; // VRAM
// }
// else
// {
// m_has_sgram = true; // SGRAM
// }
psx_gpu_init( 2 );
}
}

View File

@ -233,8 +233,6 @@ private:
void gpu_read( uint32_t *p_ram, int32_t n_size );
void gpu_write( uint32_t *p_ram, int32_t n_size );
// bool m_has_sgram; // VRAM(false) or SGRAM(true)
int32_t m_n_tx;
int32_t m_n_ty;
int32_t n_abr;