nasm
Can't link assembly file in Mac OS X using ld
I\'m trying to run a basic assembly file using 64 Bit Mac OS X Lion, using nasm and ld which are installed by default with Xcode.[详细]
2023-03-26 08:14 分类:问答Good references for the syscalls
I need some reference but a good one, possibly with some nice examples. I need it because I am starting to write code in assembly using the NASM assembler. I have this reference:[详细]
2023-03-25 01:43 分类:问答Switching to User-mode using iret
I am writing a small OS that will execute some code in user mode (privilege level 3).From that user level code, I want to call an interrupt back to the OS that prints a message.Right now I don\'t real[详细]
2023-03-24 19:12 分类:问答NASM Linux Assembly Printing Integers
I am trying to print a single digit integer in nasm assembly on linux. What I currently have compiles fine, but nothing is being written to the screen. Can anyone explain to me what I am doing wrong h[详细]
2023-03-24 04:10 分类:问答Hardware VGA Text Mode IO in old dos assembly Issue
After reading about at least the first 3 or 4 chapters of about 4 different books on assembly programming I got to a stage where I can put \"Hello World\" on a dosbox console using MASM 6.11. Imagine[详细]
2023-03-23 12:32 分类:问答How to generate plain binaries like nasm -f bin with the GNU GAS assembler?
I have some NASM files that generally have the structure: [BITS 64] [ORG 0x0000000000200000] start: ... ret[详细]
2023-03-23 02:59 分类:问答what are the differences between these nasm stack pushes?
this is in 16 bit, real mode, NASM. ; ---- variables ------ cursorRow db 1 . . . ; what are the differences between these two pushes?[详细]
2023-03-19 08:21 分类:问答Loading a floppy disk image with a boot binary
I\'ve created a small assembly binary to boot from a floppy disk (ideally), but I can\'t work out how to actually \'put\' the binary onto the disk so that it is bootable. I\'d rather use a floppy disk[详细]
2023-03-18 05:58 分类:问答Is it worthwile to learn assembly language? [closed]
Closed. This question is off-topic. It is not currently accepting answers. 开发者_开发知识库 Want to improve this question? Update the question so it's on-topic for Stack Overflow.[详细]
2023-03-18 01:04 分类:问答How would I find the length of a string using NASM?
I\'m trying to make a program using NASM that takes input from command line a开发者_如何转开发rguments. Since string length is not provided, I\'m trying to make a function to compute my own. Here is m[详细]
2023-03-15 16:36 分类:问答