Changeset 6545 for branches/mini/src


Ignore:
Timestamp:
Aug 16, 2001, 2:13:56 PM (24 years ago)
Author:
bird
Message:

trimmed away another byte ;-) NORMAL=1 is now 274 bytes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/mini/src/win32k/test/mini.asm

    r6535 r6545  
    1 ; $Id: mini.asm,v 1.1.2.9 2001-08-15 03:17:36 bird Exp $
     1; $Id: mini.asm,v 1.1.2.10 2001-08-16 12:13:56 bird Exp $
    22;
    33; Haveing great fun making small executables...
     
    4545minilx:
    4646ifdef CLIB
     47    ; method 1 - 4 bytes
     48    ;inc     eax
     49    ;shl     eax,16
     50    ; method 2 - 4 bytes
     51    ;bts     eax, 16
     52    ; method 3 - 4 bytes
     53    ;inc     ah
     54    ;mul     eax
     55    ; method 4 - 3 bytes YEAH!!!
     56    dec     ax
    4757    inc     eax
    48     shl     eax,16
    4958    jmp     vprintf
    5059else
Note: See TracChangeset for help on using the changeset viewer.