mirror of
https://github.com/holub/mame
synced 2025-05-31 01:51:46 +03:00
Merge pull request #4144 from hp9k/hp98620_endianess
hp98620: fix register endianess
This commit is contained in:
commit
59cc16c51c
@ -78,10 +78,10 @@ private:
|
||||
static constexpr uint16_t REG_1TQ4_CONTROL_START = 1 << 15;
|
||||
|
||||
/* registers */
|
||||
static constexpr int REG1_1TQ4_ADDRESS_HIGH = 0x200;
|
||||
static constexpr int REG1_1TQ4_ADDRESS_LOW = 0x202;
|
||||
static constexpr int REG1_1TQ4_TRANSFER_COUNT_HIGH = 0x204;
|
||||
static constexpr int REG1_1TQ4_TRANSFER_COUNT_LOW = 0x206;
|
||||
static constexpr int REG1_1TQ4_ADDRESS_LOW = 0x200;
|
||||
static constexpr int REG1_1TQ4_ADDRESS_HIGH = 0x202;
|
||||
static constexpr int REG1_1TQ4_TRANSFER_COUNT_LOW = 0x204;
|
||||
static constexpr int REG1_1TQ4_TRANSFER_COUNT_HIGH = 0x206;
|
||||
static constexpr int REG1_1TQ4_CONTROL = 0x208;
|
||||
static constexpr int REG1_1TQ4_STATUS = 0x20a;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user