move nes into the sources/NES directory

This commit is contained in:
jb
2009-02-05 08:24:50 +00:00
commit 586150bf93
66 changed files with 21595 additions and 0 deletions

15
unix/SConstruct Normal file
View File

@@ -0,0 +1,15 @@
# -*- python -*-
##############
# Nes program
#
#
Program('nes', ['../src/main.c', '../src/debug.c', '../src/cpu/cpu6502.c',
'../src/emulator/emulator.c', '../src/emulator/memory.c',
'../src/emulator/ppu.c', '../src/emulator/apu.c',
'../src/emulator/debugger.c', '../src/emulator/paddle.c'],
CPPPATH=['../src', '../src/cpu', '../src/emulator'],
CCFLAGS='-g -Wall `sdl-config --cflags`',
LIBS=['SDL'],
LIBPATH='/usr/lib')