mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-06-06 11:05:05 +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-fx -c $(GINT_CMAKE_OPTIONS)
|
||||||
@ fxsdk build-cg -c $(GINT_CMAKE_OPTIONS)
|
@ fxsdk build-cg -c $(GINT_CMAKE_OPTIONS)
|
||||||
@ fxsdk build-fxg3a -c $(GINT_CMAKE_OPTIONS)
|
@ fxsdk build-fxg3a -c $(GINT_CMAKE_OPTIONS)
|
||||||
|
@ fxsdk build-cp -c $(GINT_CMAKE_OPTIONS)
|
||||||
|
|
||||||
build:
|
build:
|
||||||
@ fxsdk build-fx
|
@ fxsdk build-fx
|
||||||
@ fxsdk build-cg
|
@ fxsdk build-cg
|
||||||
@ fxsdk build-fxg3a
|
@ fxsdk build-fxg3a
|
||||||
|
@ fxsdk build-cp
|
||||||
|
|
||||||
install:
|
install:
|
||||||
@ fxsdk build-fx install
|
@ fxsdk build-fx install
|
||||||
@ fxsdk build-cg install
|
@ fxsdk build-cg install
|
||||||
@ fxsdk build-fxg3a install
|
@ fxsdk build-fxg3a install
|
||||||
|
@ fxsdk build-cp install
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
@ if [ -e build-fx/install_manifest.txt ]; then \
|
@ if [ -e build-fx/install_manifest.txt ]; then \
|
||||||
|
@ -27,5 +30,8 @@ uninstall:
|
||||||
@ if [ -e build-fxg3a/install_manifest.txt ]; then \
|
@ if [ -e build-fxg3a/install_manifest.txt ]; then \
|
||||||
xargs rm -f < build-fxg3a/install_manifest.txt; \
|
xargs rm -f < build-fxg3a/install_manifest.txt; \
|
||||||
fi
|
fi
|
||||||
|
@ if [ -e build-cp/install_manifest.txt ]; then \
|
||||||
|
xargs rm -f < build-cp/install_manifest.txt; \
|
||||||
|
fi
|
||||||
|
|
||||||
.PHONY: configure build install uninstall
|
.PHONY: configure build install uninstall
|
||||||
|
|
|
@ -155,6 +155,9 @@ void hw_detect(void)
|
||||||
uint8_t *productID = (void *)0x8001ffd0;
|
uint8_t *productID = (void *)0x8001ffd0;
|
||||||
if(!memcmp(productID, "\xff\xff\xff\xff\xff\xff\xff\xff", 8))
|
if(!memcmp(productID, "\xff\xff\xff\xff\xff\xff\xff\xff", 8))
|
||||||
gint[HWCALC] = HWCALC_FXCG_MANAGER;
|
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 */
|
/* Basic memory information */
|
||||||
gint[HWRAM] = (gint[HWCALC] == HWCALC_PRIZM) ? (2 << 20) : (8 << 20);
|
gint[HWRAM] = (gint[HWCALC] == HWCALC_PRIZM) ? (2 << 20) : (8 << 20);
|
||||||
|
|
|
@ -258,10 +258,9 @@ ___PutKeyCode: casiowin_call(#20)
|
||||||
___GetKeyWait: casiowin_call(#21)
|
___GetKeyWait: casiowin_call(#21)
|
||||||
___ClearKeyBuffer: casiowin_call(#22)
|
___ClearKeyBuffer: casiowin_call(#22)
|
||||||
___GetVRAMAddress: casiowin_call(#23)
|
___GetVRAMAddress: casiowin_call(#23)
|
||||||
___ConfigureStatusArea: casiowin_call(#24)
|
___SetQuitHandler: casiowin_call(#24)
|
||||||
___SetQuitHandler: casiowin_call(#25)
|
___PowerOff: casiowin_call(#25)
|
||||||
___PowerOff: casiowin_call(#26)
|
___Reset: casiowin_call(#26)
|
||||||
___Reset: casiowin_call(#27)
|
|
||||||
|
|
||||||
.data
|
.data
|
||||||
.CASIOWIN_API:
|
.CASIOWIN_API:
|
||||||
|
|
Loading…
Add table
Reference in a new issue