You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Laser 500, it's more natural to use cursor arrow keys instead of IJKL.
Unfortunately Z88DK disables them by default (I will address a bugfix for that) but you can re-enable them by having the following compiler switch added to your makefile:
-pragma-define:CLIB_LASER500_SCAN_EXTRA_ROWS=1
After that, the keyboard input routine will return:
UP: 11
DOWN: 13
LEFT: 8
RIGHT: 9
that you can use in place of IJKL
The text was updated successfully, but these errors were encountered:
In Laser 500, it's more natural to use cursor arrow keys instead of
IJKL
.Unfortunately Z88DK disables them by default (I will address a bugfix for that) but you can re-enable them by having the following compiler switch added to your makefile:
After that, the keyboard input routine will return:
that you can use in place of IJKL
The text was updated successfully, but these errors were encountered: