mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-04-04 09:37:10 +02:00
Compare commits
3 commits
294d6afc8c
...
48718bf9be
Author | SHA1 | Date | |
---|---|---|---|
|
48718bf9be | ||
|
4a5c0bbfec | ||
|
cf020c4bee |
3 changed files with 12 additions and 4 deletions
|
@ -6,16 +6,19 @@ configure:
|
|||
@ fxsdk build-fx -c $(GINT_CMAKE_OPTIONS)
|
||||
@ fxsdk build-cg -c $(GINT_CMAKE_OPTIONS)
|
||||
@ fxsdk build-fxg3a -c $(GINT_CMAKE_OPTIONS)
|
||||
@ fxsdk build-cp -c $(GINT_CMAKE_OPTIONS)
|
||||
|
||||
build:
|
||||
@ fxsdk build-fx
|
||||
@ fxsdk build-cg
|
||||
@ fxsdk build-fxg3a
|
||||
@ fxsdk build-cp
|
||||
|
||||
install:
|
||||
@ fxsdk build-fx install
|
||||
@ fxsdk build-cg install
|
||||
@ fxsdk build-fxg3a install
|
||||
@ fxsdk build-cp install
|
||||
|
||||
uninstall:
|
||||
@ if [ -e build-fx/install_manifest.txt ]; then \
|
||||
|
@ -27,5 +30,8 @@ uninstall:
|
|||
@ if [ -e build-fxg3a/install_manifest.txt ]; then \
|
||||
xargs rm -f < build-fxg3a/install_manifest.txt; \
|
||||
fi
|
||||
@ if [ -e build-cp/install_manifest.txt ]; then \
|
||||
xargs rm -f < build-cp/install_manifest.txt; \
|
||||
fi
|
||||
|
||||
.PHONY: configure build install uninstall
|
||||
|
|
|
@ -155,6 +155,9 @@ void hw_detect(void)
|
|||
uint8_t *productID = (void *)0x8001ffd0;
|
||||
if(!memcmp(productID, "\xff\xff\xff\xff\xff\xff\xff\xff", 8))
|
||||
gint[HWCALC] = HWCALC_FXCG_MANAGER;
|
||||
/* Tell circuit10's emulator apart using the lack of OS version */
|
||||
if(!memcmp(version, "UUUUUUUUUU", 10))
|
||||
gint[HWCALC] = HWCALC_FXCG50;
|
||||
|
||||
/* Basic memory information */
|
||||
gint[HWRAM] = (gint[HWCALC] == HWCALC_PRIZM) ? (2 << 20) : (8 << 20);
|
||||
|
|
|
@ -258,10 +258,9 @@ ___PutKeyCode: casiowin_call(#20)
|
|||
___GetKeyWait: casiowin_call(#21)
|
||||
___ClearKeyBuffer: casiowin_call(#22)
|
||||
___GetVRAMAddress: casiowin_call(#23)
|
||||
___ConfigureStatusArea: casiowin_call(#24)
|
||||
___SetQuitHandler: casiowin_call(#25)
|
||||
___PowerOff: casiowin_call(#26)
|
||||
___Reset: casiowin_call(#27)
|
||||
___SetQuitHandler: casiowin_call(#24)
|
||||
___PowerOff: casiowin_call(#25)
|
||||
___Reset: casiowin_call(#26)
|
||||
|
||||
.data
|
||||
.CASIOWIN_API:
|
||||
|
|
Loading…
Add table
Reference in a new issue