
NASM OOP - Work In Progress
2010年7月14日 · News: NASM - The Netwide Assembler » NASM Forum » Example Code » NASM OOP - Work In Progress « previous next » Print Pages: [1] 2 3
Nasm Speed - Netwide Assembler
2017年4月28日 · Nasm Speed I run Nasm on Windows; would that be an unintentionally crippled version compared to Linux? If create test files of the same few lines repeated thousands of times, …
My first attempt using nasm and adding two vectors!
2012年12月25日 · Hello everybody! This is my first real attempt at using nasm to create a function that I link into a c++ program. The function adds to vectors of integers and returns the result. So it isn't the …
64 bit Windows command line program with SSE2 and AVX instructions
2013年3月4日 · Gerhard Logged Print Pages: [1] NASM - The Netwide Assembler » NASM Forum » Example Code » 64 bit Windows command line program with SSE2 and AVX instructions
Converting YASM to NASM - Netwide Assembler
2009年10月1日 · I'm currently working on a project that makes use of TrueCrypt. To build TrueCrypt, both NASM and YASM assemblers are required (presumably because YASM supported 64bit before …
Random number - forum.nasm.us
2009年7月22日 · Nasm only assembles what x86 (_64) implements. I vaguly recall hearing that some CPU *does* include a "random" instruction, but I can't find it. I use "rdtsc". Since it always comes up …
Linking problems - Netwide Assembler
2016年3月13日 · Stick with the code with "ExitProcess" in it. That's for Windows. I can tell you that Jeremy Gordon's GoLink is popular with Nasm Windows users. ld should work, but I can't tell you …
Real to Protected Mode Taskings and Design for Banks
2023年5月17日 · For specification this build is 100% compatible to NASM builds and is a mainly based on CISC assembly and some setting files such as for make and ld commands. A good thing to know …
Help with writing custom C type string functions using NASM
2017年9月6日 · Help with writing custom C type string functions using NASM It's pretty much correct, but you've got some things out of order. You don't need to "preserve" registers that you don't use. …
Terminate constant string in NASM source?
2009年6月5日 · Hi, I am trying to push a constant "string" (4 bytes), onto the stack, but I need to "terminate" the string with bytes containing 0x00. The string is something like "e!", and the …