Assembler

C code posted by NASM
created at 14 Jul 04:43

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
12
13
14
GLOBAL squaring
SECTION .bss
  res: resb 8
  sav: resb 94
SECTION .text
squaring:
        FNSAVE [sav]
        push ebp
        finit
        fld1
        fld QWORD [esp+8]
  MOV EAX, [esp+16]
  cmp eax, 0
  je null  
224 Bytes in 2 ms with coderay