nasm
SDL and nasm on 64bits linux
I am having trouble with nasm and ld here is what I do: source: EXTERN SDL_Init SECTION .text global _start[详细]
2023-02-03 20:28 分类:问答writing to a file in nasm using system calls
As part of an assignment, I\'m supposed to write to a file using system calls. Everything works fine except when I try to open the file in gedit (Linux). It says it can\'t identify the character encod[详细]
2023-01-31 21:53 分类:问答Finding substring in assembly
I\'m wondering if there is a more efficient method to finding a substring in assembly then what I am currently planning to do.[详细]
2023-01-29 14:27 分类:问答NASM - Extending label with bit flag
I need to set the highest bit of some label address/offset. I tried: test.nasm: BITS 32 dw mylabel | 0x8000[详细]
2023-01-29 03:25 分类:问答How can I load C application with Assembly?
I开发者_开发技巧t\'s the same idea as Operating system boot loader. I have a C source code and Assembly source code. I want the assembly code to pass control to the C application. I am working on Linu[详细]
2023-01-28 20:42 分类:问答Linux assembly; bss section memory initialized to 0?
In tests I have run the memory in the bss section of my programs has always been开发者_开发百科 initialized to zero before I write anything there.Is this coincidental, or is the system \"cleaning\" th[详细]
2023-01-27 12:49 分类:问答Link Windows .obj file with c++ project using NetBeans/GCC/NASM
Posted: Mon Nov 22, 2010 2:30 amPost subject: How to link an assembly object with a c++ project Hello,[详细]
2023-01-27 04:18 分类:问答Error when trying to run .asm file on NASM on Ubuntu
I\'m using ubuntu 64-bit and trying to run a .asm file on NASM. 开发者_StackOverflowBut it returns this error when I try to run the following code. What Iḿ trying to do is build an executable by comp[详细]
2023-01-26 23:56 分类:问答More efficient way to output an integer in pure assembly
I\'m looking to output an integer using pure assembly. I\'m using nasm on a 64-bit linux machine. At the moment I\'m looking for a way to output integers to debug a compiler, but I want to use the sam[详细]
2023-01-24 08:58 分类:问答assembly implementation for kbhit in linux
I\'m writing a game in assembly, and I need to check if开发者_Python百科 a key was pressed. So, how is kbhit implemented in Linux?[详细]
2023-01-21 11:36 分类:问答