aboutsummaryrefslogtreecommitdiff
path: root/changelog.txt
diff options
context:
space:
mode:
authorlameguy64 <lameguy64@gmail.com>2019-05-23 22:24:56 +0800
committerlameguy64 <lameguy64@gmail.com>2019-05-23 22:24:56 +0800
commit3ffebff2aad2ca438cf76db51fb3459c5639cd67 (patch)
treea234fc6158d3c09904c4c1fb2feee09afb479a4c /changelog.txt
parente70cd149f41ea71f9ca9ee86c03d1e59005dad2a (diff)
downloadpsn00bsdk-3ffebff2aad2ca438cf76db51fb3459c5639cd67.tar.gz
Added BIOS Controller, BIOS CD, 2 new examples and custom exit handler in the works
Diffstat (limited to 'changelog.txt')
-rw-r--r--changelog.txt28
1 files changed, 28 insertions, 0 deletions
diff --git a/changelog.txt b/changelog.txt
new file mode 100644
index 0000000..1c27eaf
--- /dev/null
+++ b/changelog.txt
@@ -0,0 +1,28 @@
+PSn00bSDK changelog
+
+05-23-2019 by Lameguy64:
+
+* Added dev notes.txt file in docs that includes notes about the many
+ quirks discovered about the system throughout the development of this SDK.
+
+* Updated libn00bref.odf a little.
+
+* Added rgb24 example.
+
+* Made stack usage in ResetGraph() less wasteful.
+
+* VSync IRQ handling now done using a custom exit handler. Actual VSync
+ handling is yet to be moved to the custom exit handler though.
+
+* Made stack usage in start.s of libc a lot less wasteful.
+
+* Implemented controller support via BIOS functions (use _InitPad(),
+ _StartPad() and _StopPad()). BIOS memory card functions may also
+ work as well but its not tested yet.
+
+* Removed duplicate initpad.s and initcard.s functions in psxapi.
+
+* Added _InitCd() function to psxapi which is a safer version of _96_init()
+ as it preserves other DMA channel settings. Use BIOS file functions such
+ as open(), read() and close() with path names starting with cdrom:/ to
+ access files from CD after calling _InitCd().