[A83] Re: Is compression possible?
[Prev][Next][Index][Thread]
[A83] Re: Is compression possible?
> Just do something like this:
>
> RoutineYouWantToMeasure:
> ... ; routine code goes here
> RoutineYouWantToMeasureEnd:
>
> .ECHO "Size of RoutineYouWantToMeasure is: "
> .ECHO (RoutineYouWantToMeasureEnd -
RoutineYouWantToMeasure)
> .ECHO " bytes.\n"
>
> Then when you compile, TASM will display something like:
> Size of RoutineYouWantToMeasure is: xxx bytes.
>
> I'm full of useless bits of information like that ;)
It proved completely useless to me at least, since the code
is not in one separate contiguous block. Okay, I could use
more labels and a bit of math, but I'm too lazy for that.
And the code changes rapidly anyway. :)
PG
References: