diff options
| author | xCrystal <rgr.crystal@gmail.com> | 2019-09-10 20:29:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-10 20:29:30 +0200 |
| commit | 061a4bdc5a0ece89a5fad6279529d71926074084 (patch) | |
| tree | 3ab86f89007e92b24e730bc2ea5eb2bcae01fa00 /src/macros/data.asm | |
| parent | c65123b5e29f32fa884c85ea518742debd2c25a9 (diff) | |
| parent | 6d267237b14d5bf252bada97107ff5c9732bae1b (diff) | |
Merge pull request #59 from jidoc01/master
On OpenGlossaryScreen
Diffstat (limited to 'src/macros/data.asm')
| -rw-r--r-- | src/macros/data.asm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/macros/data.asm b/src/macros/data.asm index a7ac93d..f2a2210 100644 --- a/src/macros/data.asm +++ b/src/macros/data.asm @@ -88,4 +88,15 @@ ENDM textitem: MACRO db \1, \2 tx \3 +ENDM + +; cursor x / cursor y / attribute / idx-up / idx-down / idx-right / idx-left +; idx-[direction] means the index to get when the input is in the direction. +; its attribute is used for drawing a flipped cursor. +cursor_transition: MACRO + db \1, \2, \3 + rept 4 + db \4 + shift + endr ENDM
\ No newline at end of file |
