Skip to content

Instantly share code, notes, and snippets.

@ISSOtm
Created November 5, 2022 21:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ISSOtm/2768d0ce603ac31980d672b8f57cf7c8 to your computer and use it in GitHub Desktop.
Save ISSOtm/2768d0ce603ac31980d672b8f57cf7c8 to your computer and use it in GitHub Desktop.
Macro definition polyfill for RGBDS 0.4.2+
issotm@sheik-kitty ~% rgbasm - -Dm1=MACRO -Dm2= <<EOF
m1 duck{m2}
PRINTLN "Quack!"
ENDM
duck
EOF
Quack!
issotm@sheik-kitty ~% rgbasm - -Dm1= -Dm2=:MACRO <<EOF
m1 duck{m2}
PRINTLN "Quack!"
ENDM
duck
EOF
warning: <stdin>(1): [-Wobsolete]
`duck: MACRO` is deprecated; use `MACRO duck`
Quack!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment