summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu
diff options
context:
space:
mode:
author Lord-Nightmare <Lord-Nightmare@users.noreply.github.com>2015-08-13 13:33:07 -0400
committer Lord-Nightmare <Lord-Nightmare@users.noreply.github.com>2015-08-13 13:33:07 -0400
commitad1b621ca810b8e73b1816708cce61459e76d70f (patch)
tree25519b80d834ca23f8a19dc6982a5d8e77b45324 /src/emu/cpu
parentf1929939085234600f2ddd1e4980251ecac39cec (diff)
fix build (nw)
Diffstat (limited to 'src/emu/cpu')
-rw-r--r--src/emu/cpu/pdp8/pdp8dasm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/pdp8/pdp8dasm.c b/src/emu/cpu/pdp8/pdp8dasm.c
index 5ed4e73ebbb..1d33658cee7 100644
--- a/src/emu/cpu/pdp8/pdp8dasm.c
+++ b/src/emu/cpu/pdp8/pdp8dasm.c
@@ -9,7 +9,7 @@
#include "emu.h"
static char *output;
-
+/*
static void ATTR_PRINTF(1,2) print(const char *fmt, ...)
{
va_list vl;
@@ -18,7 +18,7 @@ static void ATTR_PRINTF(1,2) print(const char *fmt, ...)
output += vsprintf(output, fmt, vl);
va_end(vl);
}
-
+*/
offs_t pdp8_dasm_one(char *buffer, offs_t pc, UINT16 op)
{
UINT8 opcode = (op >> 011) & 07;