This commit is contained in:
Michael Steil 2010-10-07 00:28:02 +00:00
parent 44f7f48a9c
commit 07d31a1529
3 changed files with 5 additions and 22 deletions

View File

@ -1,7 +1,7 @@
OBJS=perfect6502.o
#OBJS+=cbmbasic.o runtime.o runtime_init.o plugin.o console.o emu.o
OBJS+=cbmbasic.o runtime.o runtime_init.o plugin.o console.o emu.o
#OBJS+=measure.o
OBJS+=broken_transistors.o runtime.o runtime_init.o plugin.o console.o emu.o
#OBJS+=broken_transistors.o runtime.o runtime_init.o plugin.o console.o emu.o
CFLAGS=-Wall -O3 -DBROKEN_TRANSISTORS
CC=clang

View File

@ -1,5 +1,8 @@
#include "perfect6502.h"
void init_monitor();
void handle_monitor();
int
main()
{

View File

@ -20,10 +20,6 @@
THE SOFTWARE.
*/
//#define TEST
//#define BROKEN_TRANSISTORS
//#define COMPARE
/************************************************************
*
* Libc Functions and Basic Data Types
@ -810,19 +806,3 @@ initAndResetChip()
/* set initial state of nodes, transistors, inputs; RESET chip */
resetChip();
}
/************************************************************
*
* Main
*
************************************************************/
void init_monitor();
void handle_monitor();
#ifdef TEST
#elif defined(BROKEN_TRANSISTORS)
#elif defined(COMPARE)
#include "compare.c"
#else
#endif