Created
November 5, 2022 21:03
-
-
Save ISSOtm/2768d0ce603ac31980d672b8f57cf7c8 to your computer and use it in GitHub Desktop.
Macro definition polyfill for RGBDS 0.4.2+
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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