diff --git a/README.txt b/README.txt deleted file mode 100644 index 0bc3dea..0000000 --- a/README.txt +++ /dev/null @@ -1,19 +0,0 @@ -peTI-NESulator -============ - -This is a cleaned version of the peTI-NESulator repository (all data has been removed) - -Some part of the original subversion has been lost because of harddrive crash so the -early stage of the project is completely lost. Or I would need to check all the -backups arount to recreate part of that history, but that not a fun thing to do to be -honest, and there is virtually nothing to gain from that. - -The source is given as is, I have to select a proper licence for this code, but concider -it to be in a 3 clause BSD with a non commercial clause: - -- You are free to use that code and integrate some part in your project -- Will need to state where some of your code come from -- This code is given as-is without any waranty of working as expected -- You CAN'T use that code for commercial product without my prior consent. - - diff --git a/ti68k/Makefile b/ti68k/Makefile deleted file mode 100644 index 9e424b4..0000000 --- a/ti68k/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -INCLUDE_FILES = ../src/include - -APU_FILES = ../src/apu/Sound.c -CORECPU_FILES = ../src/corecpu/corecpu.c -MAPPERS_FILES = ../src/mappersmanager/manager.c ../src/mappersmanager/mappers/aorom.c ../src/mappersmanager/mappers/cnrom.c ../src/mappersmanager/mappers/iremh3001.c ../src/mappersmanager/mappers/mmc1.c ../src/mappersmanager/mappers/mmc3.c ../src/mappersmanager/mappers/mmc4.c ../src/mappersmanager/mappers/norom.c ../src/mappersmanager/mappers/unrom.c -MEMORY_FILES = ../src/memorymanager/memory.c -PLUGINS_FILES = ../src/pluginsmanager/manager.c -PPU_FILES = ../src/ppu/ppu.c - -C_FILES = ../src/os/ti68k/main.c ../src/main.c ../src/NESCarts.c ../src/paddle.c ${APU_FILES} ${CORECPU_FILES} ${MAPPERS_FILES} ${MEMORY_FILES} ${PLUGINS_FILES} ${PPU_FILES} - - -tines: ${C_FILES} - gtc -I ${INCLUDE_FILES} -o $@ ${C_FILES} \ No newline at end of file diff --git a/unix/Makefile b/unix/Makefile deleted file mode 100755 index a34e888..0000000 --- a/unix/Makefile +++ /dev/null @@ -1,56 +0,0 @@ -CC = gcc - -#For Debug -#CFLAGS = -g `allegro-config --cflags debug` -I../src -Wall -pg -DISPAL -DNO_DECIMAL -DUNIX -DFAST_RDOP -DLSB_FIRST -DUSE_SOUND - -#For Retail -CFLAGS = -I$(SRC)/include -I$(SRC) -g `allegro-config --cflags release`l -DISNTSC -DNO_DECIMAL -DUNIX -DFAST_RDOP -DLSB_FIRST -DDEBUG -DUSE_SOUND -# -fomit-frame-pointer -funroll-loops -#-DNO_N_KEY -#-DUSE_SOUND -#-DDETECT_BUS_CONFLICT -#-DISNTSC or -DISPAL -#-DDEBUG - -LDFLAGS = `allegro-config --libs debug` -lpthread -#-pg #-lefence -#debug` -lpthread -lefence -pg -#release` -lpthread -#-pg - -SRC=../src -PLUGINS_DIR=pluginsmanager/plugins/ -MAPPERS_DIR=mappersmanager/mappers/ - -PLUGINS=$(shell ls $(SRC)/$(PLUGINS_DIR)/*.c) -MAPPERS=$(shell ls $(SRC)/$(MAPPERS_DIR)/*.c) - -all: tines - -tines: tines.o corecpu.o apu.o ppu.o plugins.o mappers.o memory.o - $(CC) -o $@ $(LDFLAGS) $^ - -apu.o: $(SRC)/apu/Sound.c $(SRC)/apu/SndAlleg.c - $(CC) $(CFLAGS) -c $^ -o $@ - -corecpu.o: $(SRC)/corecpu/corecpu.c - $(CC) $(CFLAGS) -Wno-pointer-sign -c $^ -o $@ - -tines.o: $(SRC)/main.c $(SRC)/paddle.c $(SRC)/NESCarts.c - $(CC) $(CFLAGS) -c $^ -o $@ - -memory.o: $(SRC)/memorymanager/memory.c - $(CC) $(CFLAGS) -c $^ -o $@ - -ppu.o: $(SRC)/ppu/ppu.c $(SRC)/ppu/ppu.memory.c $(SRC)/ppu/debug/ppu.debug.c - $(CC) $(CFLAGS) -c $^ -o $@ - -mappers.o: $(SRC)/mappersmanager/manager.c $(SRC)/mappersmanager/utils.c $(MAPPERS) - $(CC) $(CFLAGS) -c $^ -o $@ - -plugins.o: $(SRC)/pluginsmanager/manager.c $(PLUGINS) - $(CC) $(CFLAGS) -c $^ -o $@ - -.PHONY: clean -clean: - rm -Rf *.a *.o *~ core