• Member Avatar for GunnerInc
    GunnerInc

    Replied To a Post in NASM Linker warning

    How would you fix it if you wanted the entry point of your program to be NewbieChameleon? You would use the -e or --entry command line option for ld: -eEntryPointLabel …
  • Member Avatar for GunnerInc
    GunnerInc

    Replied To a Post in How to print array in nasm.

    First thing, arraylen does not contain what you think. It contains 20: 5 dword sized elements. To get the number of elements divide by 4 ` arraylen equ ($ - …
  • Member Avatar for GunnerInc
    GunnerInc

    Replied To a Post in Using C functions from ASM code (linking issue)

    You need to install the 32 bit libraries: ia32-libs or ia32-libs-multiarch With your package manager or: > sudo apt-get install ia32-libs
  • Member Avatar for GunnerInc
    GunnerInc

    Replied To a Post in how download file.text from url in assembly

    It really is not hard at all to use libcurl. You read the [docs](http://curl.haxx.se/libcurl/c/) pass some parameters and call the functions. The following simple code will get googles robots.txt file …

The End.