summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu
diff options
context:
space:
mode:
author Lord-Nightmare <Lord-Nightmare@users.noreply.github.com>2015-08-13 13:39:03 -0400
committer Lord-Nightmare <Lord-Nightmare@users.noreply.github.com>2015-08-13 13:39:03 -0400
commitc1a312eea34006bdff2ae1182ee0e8082b67ddf0 (patch)
tree951c84b8eede061abac3b2843950657b7872425f /src/emu/cpu
parent384cd3a2ccb59dd895cf16928abe1dcbc2d199ec (diff)
on second thought, remove that function entirely (nw)
Diffstat (limited to 'src/emu/cpu')
-rw-r--r--src/emu/cpu/pdp8/pdp8dasm.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/emu/cpu/pdp8/pdp8dasm.c b/src/emu/cpu/pdp8/pdp8dasm.c
index 1d33658cee7..18a7e3e769b 100644
--- a/src/emu/cpu/pdp8/pdp8dasm.c
+++ b/src/emu/cpu/pdp8/pdp8dasm.c
@@ -9,16 +9,7 @@
#include "emu.h"
static char *output;
-/*
-static void ATTR_PRINTF(1,2) print(const char *fmt, ...)
-{
- va_list vl;
- va_start(vl, 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;