Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Major changes to HuCC's comparison code-generation. #50

Merged
merged 7 commits into from
Oct 12, 2024
30 changes: 28 additions & 2 deletions include/hucc/core-config.inc
Original file line number Diff line number Diff line change
Expand Up @@ -120,15 +120,41 @@ SUPPORT_TED2 = 0 ; (0 or 1)
.endif

;
; Support development for the SuperGrafx?
; Support development for the SuperGRAFX?
;
; This enables SuperGrafx support in certain library functions.
; This enables SuperGRAFX support in certain library functions.
;

.ifndef SUPPORT_SGX
SUPPORT_SGX = 0 ; (0 or 1)
.endif

;
; Choose SuperGRAFX VPC initialization mode.
;
; SGX_PARALLAX=0 (useful when VDC #1 is a fullscreen HUD)
;
; FRONT
; SP1 = VDC #1 (pce) sprite pixels
; BG1 = VDC #1 (pce) background pixels
; SP2 = VDC #2 (sgx) sprite pixels
; BG2 = VDC #2 (sgx) background pixels
; BACK
;
; SGX_PARALLAX=1
;
; FRONT
; SP1 = VDC #1 (pce) sprite pixels
; SP2 = VDC #2 (sgx) sprite pixels
; BG1 = VDC #1 (pce) background pixels
; BG2 = VDC #2 (sgx) background pixels
; BACK
;

.ifndef SGX_PARALLAX
SGX_PARALLAX = 1 ; The most common default.
.endif

;
; Support development for the ArcadeCard?
;
Expand Down
Loading
Loading