summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--FAQ.psx17
-rw-r--r--cd-tool.cpp1
-rw-r--r--fileutils.cpp1
-rw-r--r--fileutils.h1
4 files changed, 17 insertions, 3 deletions
diff --git a/FAQ.psx b/FAQ.psx
new file mode 100644
index 0000000..e49729a
--- /dev/null
+++ b/FAQ.psx
@@ -0,0 +1,17 @@
+Q: What is the asm used in the PSX?
+A: The PSX is equipped with a MIPS r3000. This processor is little endian, so
+ don't you worry if you know SNES or PC hacking.
+
+ I've found a tech-doc about the processor here:
+ http://psx.rules.org/system.txt
+
+
+Q: What is your full bookmark about PSX developpment?
+A: http://www.psxdev.ip3.com/
+ http://psxdev.de/
+ http://psx.rules.org/
+ http://www.geocities.co.jp/Playtown/2004/psx/ny_e.htm
+ http://www.upl.cs.wisc.edu/~hamblin/psxdev.html
+ http://www.gamefreax.de/cgi-bin/gamefreax/tools.pl?function=showfiles&system=Playstation%201
+ http://phatt.hn.org/nitrous/psxutils.htm
+ http://www.geocities.com/SiliconValley/Pines/6131/psxprog.html
diff --git a/cd-tool.cpp b/cd-tool.cpp
index 1994561..8cd5d6e 100644
--- a/cd-tool.cpp
+++ b/cd-tool.cpp
@@ -18,7 +18,6 @@
*/
#include <getopt.h>
-#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
diff --git a/fileutils.cpp b/fileutils.cpp
index 9091f29..32ca43e 100644
--- a/fileutils.cpp
+++ b/fileutils.cpp
@@ -21,7 +21,6 @@
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
-#include <unistd.h>
#include "generic.h"
unsigned long filesize(FILE * f_iso)
diff --git a/fileutils.h b/fileutils.h
index 6a37f7e..663c81e 100644
--- a/fileutils.h
+++ b/fileutils.h
@@ -24,7 +24,6 @@
#include <sys/stat.h>
#include <sys/types.h>
#include <fcntl.h>
-#include <unistd.h>
unsigned long filesize(FILE * f_iso);
void copy(FILE * s, FILE * d, long size);