diff options
author | 2016-10-22 17:35:04 +0200 | |
---|---|---|
committer | 2016-10-22 17:35:04 +0200 | |
commit | 1446bd7ecddab41b0a0bdf2e933cfc0fd52e3bdd (patch) | |
tree | dcac85b6b0db88a047796ac3898a9277fa55da5a /src/devices/cpu/i86/i286.cpp | |
parent | a6bdefec8c76e9878b634119c56438a7673b0385 (diff) |
converted lot of TRUE/FALSE to real boolean and updated types (nw)
Diffstat (limited to 'src/devices/cpu/i86/i286.cpp')
-rw-r--r-- | src/devices/cpu/i86/i286.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/i86/i286.cpp b/src/devices/cpu/i86/i286.cpp index e6358a2f88b..4872f6f223e 100644 --- a/src/devices/cpu/i86/i286.cpp +++ b/src/devices/cpu/i86/i286.cpp @@ -317,7 +317,7 @@ bool i80286_cpu_device::memory_translate(address_spacenum spacenum, int intentio if(spacenum == AS_PROGRAM) address &= m_amask; - return TRUE; + return true; } void i80286_cpu_device::execute_set_input(int inptnum, int state) |