mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-06-07 19:45:04 +02:00
Compare commits
No commits in common. "48718bf9beb86aa3fd481380997e255c85ecd01a" and "294d6afc8cbe4879fa1a1f8429a9bbc7ee7464c7" have entirely different histories.
48718bf9be
...
294d6afc8c
3 changed files with 4 additions and 12 deletions
|
@ -6,19 +6,16 @@ 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 \
|
||||||
|
@ -30,8 +27,5 @@ 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,9 +155,6 @@ 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,9 +258,10 @@ ___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)
|
||||||
___SetQuitHandler: casiowin_call(#24)
|
___ConfigureStatusArea: casiowin_call(#24)
|
||||||
___PowerOff: casiowin_call(#25)
|
___SetQuitHandler: casiowin_call(#25)
|
||||||
___Reset: casiowin_call(#26)
|
___PowerOff: casiowin_call(#26)
|
||||||
|
___Reset: casiowin_call(#27)
|
||||||
|
|
||||||
.data
|
.data
|
||||||
.CASIOWIN_API:
|
.CASIOWIN_API:
|
||||||
|
|
Loading…
Add table
Reference in a new issue