x86-16
Register indirect addressing
I would like to know if the开发者_开发技巧re is a difference between: MOV [BX] + 20, AX and MOV [BX + 20], AX[详细]
2023-03-01 04:05 分类:问答8086 assembly language
what is the significance of mov ax,@dat开发者_Python百科a Why do we write it?Usually that line would be followed by:[详细]
2023-02-28 17:56 分类:问答32 bit binary to ASCII 8086 assembly
I need to convert 32-bit number to ASCII. I don\'t know how I can do it .... This is the code what I wrote :[详细]
2023-02-25 15:57 分类:问答CONCEPT OF MOV AX,CS and MOV DS,AX
Can someone please explain the functions of these three instructions? ORG 1000H MOV AX,CS MOV DS,AX I know what the code, data, and extra segments are in theory, but:[详细]
2023-02-18 23:03 分类:问答Assembly 8086 program that calculates c = ((22-7)/5)*113
hi i really have no idea how this is working dat开发者_运维知识库a segment db 22 db 7 db 5 db 113[详细]
2023-02-18 09:18 分类:问答Assembly 8086 program
I am new to assembly language and this is some code that I didn\'t understand hoping that someone would help with it.[详细]
2023-02-18 03:09 分类:问答When Will the Code Under DATA SEGMENT execute in this code?
I am a beginner of Assembly Programming... I surfed a lot in google. There is a lot of information, but I still do not understand the following code. I would be grateful if someone could explain[详细]
2023-02-17 11:17 分类:问答NASM interrupt x86 reference?
I can\'t seem to find a good reference for NASM x86 interrupts on a Linux system. For example, what is int 0x60 and how is it different from int 0x80?[详细]
2023-02-16 08:11 分类:问答How to display 11.1 after div in assembly?
How to display 11.1 after the div? E.g 32/5=6.4, I am only able to display 6 so how to display 6.4? OUT23:[详细]
2023-02-10 06:40 分类:问答IN/OUT access to addresses above 2^16?
How can I load/store data to the periphery which a开发者_开发百科ddress is bigger than 216 with IN/OUT instructions.[详细]
2023-02-09 13:57 分类:问答