readability cleanup in opcode table

This commit is contained in:
Michaël Banaan Ananas 2014-02-05 22:26:32 +00:00
parent 2a290bccf6
commit 49121f9998
2 changed files with 809 additions and 783 deletions

File diff suppressed because it is too large Load Diff

View File

@ -139,15 +139,15 @@ private:
UINT8 read_arg8(UINT32 address);
UINT16 read_arg16(UINT32 address);
INT32 read_arg24(offs_t adr);
UINT32 read_arg24(UINT32 address);
UINT8 read_mem8(UINT32 address);
UINT16 read_mem16(UINT32 address);
INT32 read_mem24(offs_t adr);
UINT32 read_mem24(UINT32 address);
void write_mem8(UINT32 address, UINT8 data);
void write_mem16(UINT32 address, UINT16 data);
void write_mem24(offs_t adr, UINT32 val);
void write_mem24(UINT32 address, UINT32 data);
void mn102_change_pc(UINT32 pc);
void mn102_take_irq(int level, int group);