orgMINT / MINT

MINT2 The latest version of MINT
GNU General Public License v3.0
16 stars 3 forks source link

ASCII codes, listed not all used #22

Closed SteveJustin1963 closed 2 weeks ago

SteveJustin1963 commented 2 weeks ago

fixed with /C

; ASCII codes 0000 ESC: EQU 1BH
0000 CR: EQU 0DH
0000 LF: EQU 0AH

CRLF is used in /N ESC not used, would be useful to control special

The Escape (ESC) character, represented by 1B in hexadecimal (or 27 in decimal), is part of the ASCII control characters. It is used to trigger or switch to special modes of operation in devices, programs, or protocols. Here are some of its common uses:

1. Terminal Control

2. Printer Commands

3. Modem Control

4. Keyboard Input

5. Escape Sequences in Programming

6. Network Protocols

7. Custom Use

SteveJustin1963 commented 2 weeks ago

/C