nasm
Reading from a file in assembly
I\'m trying to learn assembly -- x86 in a Linux environment.The most useful tutorial I can find is Writing A Useful Program With NASM.The task I\'m setting myself is simple: read a file and write it t[详细]
2023-01-09 15:55 分类:问答How do i read single character input from keyboard using nasm (assembly) under ubuntu?
I\'m using nasm under ubuntu. By the way i need to get single input character from user\'s keyboard (like when a program ask you for y/n ?) so as key pressed and without pressing enter i need to read[详细]
2023-01-08 13:35 分类:问答OS's Boot-loader doesn't work
I am making a custom Operating System. I have two nasm files: boot.asm: [BITS 16];tell the assembler that its a 16 bit code[详细]
2023-01-07 19:35 分类:问答How important are section/segment directives?
How important are section/segment directives? I\'ve noticed that they are usually optional. A开发者_如何学Pythonlso, I\'ve noticed that the output size changes when you do or do not include them.[详细]
2023-01-06 20:09 分类:问答Compiling Assembly code
I\'m trying to compile an ASM program I wrote with NASM and the \"ld\" command from DJGPP.This is the code for the batch file I\'m using to compiling it:[详细]
2023-01-04 09:47 分类:问答Call Another Source File
I\'m building a program(in 16-Bits) using Assembly(nasm as the assembler), but as I love to开发者_开发知识库 have things organized in different source files. Let\'s think I have 2 sources, one called[详细]
2023-01-03 20:37 分类:问答How do I print out the content of a register in Hex
I\'m currently getting started with NASM and wanted to know, how to output the contents of a register with NASM in Hexadecimal.[详细]
2023-01-03 02:56 分类:问答What are the limitations of assembler? (NASM)
Is there a technical limitation of what kind of programs I can write with assembler (NASM)? For now I\'ve only seem some program that do arithmetic operations, like adding two numbers.[详细]
2023-01-01 04:38 分类:问答link nasm program for mac os x
i have some problems with linking nasm program for macos: GLOBAL _start SEGMENT .text _start: mov ax, 5 mov bx, ax[详细]
2022-12-31 20:23 分类:问答Am I Writing Assembly Or NASM?
I\'m fed up with this. I\'ve been trying to just get a grip on assembly for awhile, but I feel like I\'m coding towards my compiler rather than a language.[详细]
2022-12-31 16:20 分类:问答
加载中,请稍侯......