summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/i86/i286.cpp
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2023-06-16 13:01:35 +0200
committer hap <happppp@users.noreply.github.com>2023-06-16 13:01:35 +0200
commit95228a9955c04fd71884c25f721b864d1c00b21c (patch)
treeb7a034eacb000fce1c091c7c76dcbab6ef0d8965 /src/devices/cpu/i86/i286.cpp
parent3e94326fe23d2b62a27a69a720d6f36bbf620496 (diff)
m6801: add i/o ports tri-state callback,
misc: correct some typos
Diffstat (limited to 'src/devices/cpu/i86/i286.cpp')
-rw-r--r--src/devices/cpu/i86/i286.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/i86/i286.cpp b/src/devices/cpu/i86/i286.cpp
index c13985bf2eb..ece39503c44 100644
--- a/src/devices/cpu/i86/i286.cpp
+++ b/src/devices/cpu/i86/i286.cpp
@@ -1344,7 +1344,7 @@ m_limit[sreg] = LIMIT(desc); }
LOADDESC(0x842, SS);
LOADDESC(0x848, DS);
#undef LOADDESC
- // void cast supresses warning
+ // void cast suppresses warning
#define LOADDESC(addr, reg, r) { desc[1] = read_word(addr); desc[2] = read_word(addr + 2); desc[0] = read_word(addr + 4); \
reg.base = BASE(desc); (void)(r); reg.limit = LIMIT(desc); }
LOADDESC(0x84e, m_gdtr, 1);