nasm
NASM keyboard emulation
I have been doing basic NASM coding, and I wondered开发者_开发百科 if it is possible to emulate a keypress using NASM. If so, how?[详细]
2023-02-23 18:37 分类:问答Using memory returned by call to malloc in NASM
I\'m using the nasm compiler to compile my code into an object file then calling gcc\'s linker to link that object file to create the final executable. This means that I have access to the C开发者_如何[详细]
2023-02-22 15:45 分类:问答Linking pe-i386 bootsector
I made two object files. One is made with nasm -f win32: C:\\home\\os> objdump -d boot.obj boot.obj:file format pe-i386[详细]
2023-02-22 08:32 分类:问答Is this the proper method for passing variables on the stack?
I wrote a simple program which takes a predefined number to a predefined power and returns the result.It\'s in NASM assembly, for Linux.I\'ve been trying to get my head around how to use the stack to[详细]
2023-02-22 03:13 分类:问答Converting Decimal to Hex
First off, this is homework. I\'m trying to read a 5 digit number into the register bx. The number is assumed to be no greater than 65535 (16 bits). Below is how I am attempting to do so.[详细]
2023-02-21 15:50 分类:问答NASM programming - `int0x80` versus `int 0x80`
I have a simple NASM program which only invokes sys_开发者_StackOverflowexit: segment .text global _start[详细]
2023-02-20 04:40 分类:问答private global vs. public global
What\'s the difference between the export of a symbol by using \"public global\" instead of \"privat开发者_C百科e global\"?See the NASM docs: private segments do not get combined, public segments do.[详细]
2023-02-19 17:16 分类:问答link c function in nasm
got a nasm project and i\'m calling a c function from it I put the n开发者_如何学JAVAame of the function in \"extern\"[详细]
2023-02-18 17:11 分类:问答FDIV how to use it in nasm, assembly
i have a sum value stored in 开发者_开发技巧 fstpqword [ebx]; Copy contents of st0 to space currently on top of the system stack[详细]
2023-02-18 14:42 分类:问答assembly nasm, compute sum of an array of real integers(floats)
the logic of this make sense to me, however it\'s still giving a segfault any ideas are appreciated...[详细]
2023-02-18 11:20 分类:问答