From a9ebbd3e72e15ca8098b576fdeb49bb41a54b0e6 Mon Sep 17 00:00:00 2001 From: Nebuleon Fumika Date: Mon, 17 Dec 2012 19:34:16 -0500 Subject: Remove object and binary files from the git repository, leaving only source. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cb4ecd2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +build/ +*.plg +*.zip \ No newline at end of file -- cgit v1.2.3 From 3b2e1bcf79e2592de9c6cd8138ade70917615083 Mon Sep 17 00:00:00 2001 From: Nebuleon Fumika Date: Mon, 17 Dec 2012 22:30:29 -0500 Subject: Makefile overhaul. --- .gitignore | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index cb4ecd2..50d62e7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,8 @@ build/ +*.o *.plg -*.zip \ No newline at end of file +*.elf +*.dat +*.zip +depend +[Tt]humbs.db \ No newline at end of file -- cgit v1.2.3 From 80858801300a2f48ad250721a79ebc7b1b0aba92 Mon Sep 17 00:00:00 2001 From: Nebuleon Fumika Date: Thu, 20 Dec 2012 18:10:38 -0500 Subject: Remove the SNES Open Bus behaviour by default. Also simplify translation again. SNES Open Bus is a quirk of the memory subsystem that allow reads of invalid addresses to return the last byte read from memory. However, it is seldom needed by a game, and it costs 1 to 3 MIPS instructions per SNES instruction to emulate. If you need SNES Open Bus, you can remove -DNO_OPEN_BUS from the Makefile. --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 50d62e7..d72f81a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,8 @@ -build/ *.o *.plg *.elf *.dat *.zip +*~ depend [Tt]humbs.db \ No newline at end of file -- cgit v1.2.3