X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=include%2Fctsupport.h;h=349aaf5db270a704d64d8aac7c9cfc483953a5bc;hp=708d1610dc48d49ffbc2ba81c6067ea803b41058;hb=12e2c29153a0f55ac23bdeec06b404638672985b;hpb=0fe37e9c318904715493dc9c894f658c43e6178e diff --git a/include/ctsupport.h b/include/ctsupport.h index 708d161..349aaf5 100644 --- a/include/ctsupport.h +++ b/include/ctsupport.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: ctsupport.h,v 1.1 2000/06/19 18:49:00 kevin Exp $ +** $Id: ctsupport.h,v 1.2 2000/06/19 19:04:05 kevin Exp $ ** ** ** This program is free software; you can redistribute it and/or modify @@ -319,4 +319,44 @@ unsigned int cio_kb_waitc(const char *astr, int beep); #define KEY_RETURN 13 #define KEY_ESCAPE 27 -#endif +// ASCII Section + +#define BACKSPACE 8 +#define LF 0x0A +#define CR 0x0D +#define BELL 0x07 + +#define SQUOTE '\'' +#define DQUOTE '\"' +#define BSLASH '\\' +#define BACKSLASH '\\' +#define SHARP '#' +#define SLASH '/' +#define ASTERICK '*' +#define COLON ':' +#define LBRACE '{' +#define RBRACE '}' +#define LPAREN '(' +#define RPAREN ')' +#define LBRACK '[' +#define RBRACK ']' +#define LANBRACK '<' +#define RANBRACK '>' +#define SEMICOL ';' +#define UNDERLIN '_' +#define COMMA ',' +#define CARET '^' +#define TILDE '~' +#define ATSIGN '@' +#define AMPERSAND '&' +#define EXCLAM '!' +#define DOLLAR '$' +#define PERCENT '%' +#define PLUS '+' +#define HYPHEN '-' +#define EQUALS '=' +#define QUESTION '?' +#define PERIOD '.' +#define VERTBAR '|' + +#endif /* #ifndef ASCII_H */