Jakash3 runs through some basic assembly commands using debug.exe. Debug is a 16bit disassembler/assembler that can be found in msdos and all 32bit versions of windows. If you are using a 64bit windows then you will need to get dosbox.
http://www.dosbox.com
can you pls help me how to code or how to have a christmas tree output using asterisk or i mean forming christmas tree tru the use of asterisk in assembly language?
cOveTouS07 3 months ago
@mohamed912mm damn, i dont remember writing that. It has been a while since I done asm. mohamed... if you're using 32bit assembly don't use 16bit registers like that. use 32 registers. "mov eax,123"
asmcriminaL 4 months ago
@asmcriminaL @awsomepk01 i want help from u please>>>>>>>>>>>>
mov al,123 (false or true) ???
mohamed912mm 4 months ago
any one here >>>>> i neeeeeed help plz
mohamed912mm 4 months ago
Helped me learn, thank you so much :)
awsomepk01 4 months ago
talk fast much :)
tutorialmasterist 1 year ago
@asmcriminaL sorry forgot to mention that, bx will contain 34, which is byte 0 of the variable and omit the mov ax,variable1 instruction, it's just a wasted instruction don't know why i typed it.
asmcriminaL 1 year ago
2:27, 34h is in AH, which is 1byte,
if you do
variable1 word 1234h
mov ax,variable1
mov bx, byte ptr [variable1]
which is byte 0 since the array index starts at 0, so al is actually byte 0, and ah is byte 1
asmcriminaL 1 year ago