5
5
// and get rid of the functions themselves
6
6
/* beautify ignore:start */
7
7
8
- const _BE = true, _LE = false; //endianness for read_int16+
8
+ var _BE = true, _LE = false; //endianness for read_int16+
9
9
//little-endian = reversed notation (Intel, ZX Spectrum),
10
10
//big-endian = direct notation (TCP/IP, Motorola, Amiga)
11
11
//For the BitReader Object, BE is MSB and LE is LSB (intuitively)
12
- const CS_ALL = true, CS_BEST = false; //charStat needall
13
- const TOEOF = -1; //use for the size parameter in findSignature
12
+ var CS_ALL = true, CS_BEST = false; //charStat needall
13
+ var TOEOF = -1; //use for the size parameter in findSignature
14
14
15
15
// ---------- START OF PRE-v3.06 CODE --------------------
16
16
@@ -127,7 +127,7 @@ const CPSpeccy = ['©', //too SPECIAL with all the tokens-for-characters, gotta
127
127
const Chars0to1F = "・☺☻♥♦♣♠•◘○◙♂♀♪♫☼▶◀↕‼¶§▬↨↑↓→←∟↔▲▼"; //#0 is a small dot from Japanese
128
128
const Chars0to1FLF = "・☺☻♥♦♣♠•◘○\x0A♂♀♪♫☼▶◀↕‼¶§▬↨↑↓→←∟↔▲▼";
129
129
const Chars0to1FCRLF = "・☺☻♥♦♣♠•◘○\x0A♂♀\x0D♫☼▶◀↕‼¶§▬↨↑↓→←∟↔▲▼";
130
- const Chars0to1FSpeccy = "\0\1\2\3\4\5,📝⬅➡⬇⬆⌫\ x0A№ \x0F\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F"; //not mixing...
130
+ const Chars0to1FSpeccy = "\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\ x0A\x0B\x0C\x0D\x0E \x0F\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F"; //not mixing...
131
131
const Chars0to1FATASCII = "♥├◨┘┤┐/╲◢▗◣▝▘ ̄▂▖♣┌─┼•▄▎┬┴▌└␛↑↓←→";
132
132
const Chars0to1FATASCII2 = "áùÑÉçôòì£ïüäöúóöÜâûîéèñêȧàȦ␛↑↓←→";
133
133
const Chars0to1FATASCII_PL = "ŹąźćŚėöÖ£üߣłŃÓ√ĘśäÜĆĄŻÄż␛↑↓←→";
@@ -691,4 +691,4 @@ function _logText(buf) { //same but as text put through CP866, or all file with
691
691
}
692
692
693
693
function _l2r(name,pos,issue) { _setResult('debug',name,'@'+Hex(pos),issue); }
694
- /* beautify ignore:end */
694
+ /* beautify ignore:end */
0 commit comments