mirror of
https://github.com/gungwald/alarm-clock-6502.git
synced 2024-09-10 10:54:27 +00:00
18 lines
351 B
C
18 lines
351 B
C
#ifndef ASCII_CODES_H
|
|
#define ASCII_CODES_H
|
|
|
|
#define NULLCHAR '\x00'
|
|
#define STARTHDR '\x01'
|
|
#define STARTTXT '\x02'
|
|
#define ENDTXT '\x03'
|
|
#define ENDTRANS '\x04'
|
|
#define ENQUIRY '\x05'
|
|
#define ACK '\x06'
|
|
#define BELL '\x07'
|
|
#define ESCAPE '\x1b'
|
|
#define BACKSPC '\x08'
|
|
#define DELETE '\x7f'
|
|
|
|
#endif
|
|
|