Skip to content

Commit

Permalink
Merge pull request #50 from jbrandwood/master
Browse files Browse the repository at this point in the history
Major changes to HuCC's comparison code-generation.
  • Loading branch information
jbrandwood authored Oct 12, 2024
2 parents a07073b + ad9ce4b commit 9281f33
Show file tree
Hide file tree
Showing 12 changed files with 1,700 additions and 602 deletions.
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

0 comments on commit 9281f33

Please sign in to comment.