PDP-11 command-line (Node-based) operation is finally working
This commit is contained in:
parent
ded8f15e86
commit
4b345bb3d2
19 changed files with 552 additions and 438 deletions
|
|
@ -620,4 +620,16 @@ Str.aASCIICodes = {
|
|||
0x1F: "US" // Unit Separator
|
||||
};
|
||||
|
||||
Str.TYPES = {
|
||||
NULL: 0,
|
||||
BYTE: 1,
|
||||
WORD: 2,
|
||||
DWORD: 3,
|
||||
NUMBER: 4,
|
||||
STRING: 5,
|
||||
BOOLEAN: 6,
|
||||
OBJECT: 7,
|
||||
ARRAY: 8
|
||||
};
|
||||
|
||||
module.exports = Str;
|
||||
|
|
|
|||
Loading…
Reference in a new issue