LCDIS - LC86104C/108C disassembler for the Sega VMU/VMS Features: - Sanyo LC86104C/108C disassembler, plus extra instructions used by the VMU - Automatic determination of code/data space. - Automatic determination of RAM banks accessed (mostly) - Special function registers and BIOS entry points are annotated. - Some instructions are commented (i.e. branch if 'A' button pressed) - Disassembly output has been tested and found accurate. - Either easier-to-read or ready-to-assemble code can be generated. - User specification of graphic & font areas (which are commented graphically) - Portable GPL C code. (with C++ style comments). Packaged by Travis Paul for pkgsrc-wip.
15 lines
410 B
C
15 lines
410 B
C
$NetBSD: patch-LCDIS.C,v 1.1 2018/05/21 16:12:14 minskim Exp $
|
|
|
|
Don't assume a case-insensitive filesystem.
|
|
|
|
--- LCDIS.C.orig 2000-07-02 19:45:58.000000000 +0000
|
|
+++ LCDIS.C
|
|
@@ -102,7 +102,7 @@
|
|
#include <string.h>
|
|
#include <memory.h>
|
|
#include <ctype.h>
|
|
-#include "lcdis.h"
|
|
+#include "LCDIS.H"
|
|
|
|
// This define needed for SUN environments:
|
|
#if (defined (sparc) || defined (__sparc__) || defined (__sparc))
|