Add text formatting capabilities to neobasic ( TAB, GETCURSOR ) #255
Closed
erlendnagel
started this conversation in
Implemented Ideas
Replies: 2 comments
-
It is an Firmware call, you can't actually PEEK() anything. It's worth considering though. |
Beta Was this translation helpful? Give feedback.
0 replies
-
This is the nearest to peeking. It's a message passing API, so you ask the firmware where the cursor is and wait for the reply. You don't have to wait for most things.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Neobasic is lacking some formatting commands that exist in some other basics, like PRINT USING, TAB() and SPC(). It is not too hard to create these as a small prcedure though (e.g. https://www.atarimagazines.com/compute/issue49/420_1_Atari_TAB.php ), but what would really make that easier is to have a command that gives the current cursor position (e.g. GETCURSORX() and GETCURSORY() , although the memory position to PEEK for that information would certainly also do, but is sadly not yet documented.
Beta Was this translation helpful? Give feedback.
All reactions