diff options
Diffstat (limited to 'src/devices/machine/53c810.cpp')
-rw-r--r-- | src/devices/machine/53c810.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/53c810.cpp b/src/devices/machine/53c810.cpp index 1ea3bd8e1cc..91775ef7d13 100644 --- a/src/devices/machine/53c810.cpp +++ b/src/devices/machine/53c810.cpp @@ -718,7 +718,7 @@ unsigned lsi53c810_device::lsi53c810_dasm(char *buf, uint32_t pc) } buf += sprintf(buf, "%s ", op_mnemonic); - need_cojunction = FALSE; + need_cojunction = false; for (i = 0; i < ARRAY_LENGTH(flags); i++) { @@ -727,7 +727,7 @@ unsigned lsi53c810_device::lsi53c810_dasm(char *buf, uint32_t pc) if (need_cojunction) buf += sprintf(buf, " AND "); else - need_cojunction = TRUE; + need_cojunction = true; buf += sprintf(buf, "%s", flags[i].text); } } |