summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2018-10-16 11:43:13 -0400
committer GitHub <noreply@github.com>2018-10-16 11:43:13 -0400
commit59cc16c51c5b978de594df3b3fadaf039daa8ff1 (patch)
tree18180af16d9e82f425f6e178b5b3ac38c45bb5d1
parent3216286a3d4d56b9813a3567b7e51609d654814a (diff)
parent44a0981b15254a9b362372bbcf416014173beea1 (diff)
Merge pull request #4144 from hp9k/hp98620_endianess
hp98620: fix register endianess
-rw-r--r--src/devices/bus/hp_dio/hp98620.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/hp_dio/hp98620.h b/src/devices/bus/hp_dio/hp98620.h
index 5ce6baab72e..3a9cfc20ef1 100644
--- a/src/devices/bus/hp_dio/hp98620.h
+++ b/src/devices/bus/hp_dio/hp98620.h
@@ -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;