Home > OS >  Stack address size on 80486, using gcc
Stack address size on 80486, using gcc

Time:06-27

GCC manual says that -m32 "generates code that runs on any i386 system". Assume I want to write a function that swaps the bytes of a 32 bit number:

    .text
    .globl  SwapBytes
    .type   SwapBytes, @function
SwapBytes:
    pushl            
  • Related