On Tue, 05 Aug 2003 18:10:08 +0800, Yeh You-Ying(EnE) youying@ene.com.tw wrote:
Therefore so far I do not know the code size of this minimal decode engine.
Any one know how to get the estimation ? Any one has the reference data ?
Try compiling this minimal program with the same compiler you used to build minimad. Subtract the size of the minimal program from the size of minimad.exe, and you'll have the actual code/data size of the engine.
/* minimal C program */ int main() { return 0; }