mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
upd78k2: Fix register order (nw)
This commit is contained in:
parent
9ce46c7cd5
commit
c12bb83e11
@ -21,11 +21,12 @@ class upd78k2_device : public cpu_device
|
||||
{
|
||||
public:
|
||||
enum {
|
||||
UPD78K2_PC, UPD78K2_PSW, UPD78K2_RBS, UPD78K2_SP,
|
||||
UPD78K2_PC,
|
||||
UPD78K2_PSW, UPD78K2_RBS, UPD78K2_SP,
|
||||
UPD78K2_AX, UPD78K2_BC,
|
||||
UPD78K2_DE, UPD78K2_HL,
|
||||
UPD78K2_X, UPD78K2_A, UPD78K2_C, UPD78K2_B,
|
||||
UPD78K2_D, UPD78K2_E, UPD78K2_H, UPD78K2_L
|
||||
UPD78K2_E, UPD78K2_D, UPD78K2_L, UPD78K2_H
|
||||
};
|
||||
|
||||
// TODO: callbacks and configuration thereof
|
||||
|
Loading…
Reference in New Issue
Block a user