A83: Mysterious Data Increase


[Prev][Next][Index][Thread]

A83: Mysterious Data Increase




When I pull this program through TASM, the file is 42 bytes big.
When I change the .db line to '.db 1,2,3,4,0', and pull it through
TASM, the file is 44 bytes big. Why? I only added /one/ byte, not?
I use the following to invoke TASM: 

 tasm -T80 -I clrhome.z80 clrhome.obj

I'm talking about the object code.

.NOLIST
#define end .end
#define END .end
#define equ .equ
#define EQU .equ
#include "ti83asm.inc"
#include "tokens.inc"
.LIST
.org 9327h
        call _clrLCDFull
        ret
data:
.db 1,2,3,0
.end
.end



Follow-Ups: