Allow more tokens in the assembler.
authorGeorge Koehler <xkernigh@netscape.net>
Wed, 18 Jan 2017 03:41:11 +0000 (22:41 -0500)
committerGeorge Koehler <xkernigh@netscape.net>
Wed, 18 Jan 2017 03:41:11 +0000 (22:41 -0500)
commitf705339f865948502c2d444e66392edff545986d
tree58356ace4752a67217fa2b8087490edfafea66ce
parentba2a03705e497239fb73c8d030789bd773eca8e5
Allow more tokens in the assembler.

I need this so I can add more %token lines to mach/powerpc/as/mach2.c

The assembler's tempfile encoded each token in a byte.  This only
worked with tokens 0 to 127 and 256 and 383.  If a token 384 or higher
existed, the assembler stopped working.  I need tokens 384 and higher.

I change the token encoding to a 2-byte little-endian integer.  I also
change a byte in the string encoding.
mach/proto/as/comm5.c