Assembly
An assembly language is a low-level language for programming computers.
Application
Any
Platform
Any
License
Any
Please help me to solve this mystery?
write a program for odd and even numbers from 1 to hundred in Assembly Language?
Hi, i got some problems where I can't find a solution for.
Let's say I wrote something like this:
global kernel
kernel:
mov ax, 0xb800
mov ds, ax
mov ax, 0
mov si, ax
mov al, 'x'
mov...
1. Cld clears the direction flag. The direction flag controls the behaviour of lodsb. If it is cleared, then si is incremented after loading the byte to al, otherwise si is decremented and the string...
1.can you tell what does "cld" mean?
2. can you explain step by step the instructions that you do from get_num_len and why
3.How to make code stop couting a space as a position? for exampe: input...
This book will help:
http://webster.cs.ucr.edu/AoA/DOS/AoADosIndex.html
hi want to learn assembly language programming . so pls help to learn
by any books
I've optimized it a bit, because there's not much use in learning asm unless you're after the fastest and smallest code. Anyway, here's how I would do it, ask if you have any questions.
.model...
yes, i meant that, so could you finish my code, plz, this would be a big favour for me
Hi,
can you explain what you mean by printing the position of each number?
Does it mean that when entering "9ea3a", it should print out "1, 4"?
One thing to note is that interrupt calls tend to...
.model small
.stack 100h
.data
msg DB "Input string", 13, 10, "$"
maxlength db 254
length db "?"
string db 254 dup ("$")
enter db 13, 10, "$"...
Hi guys, i am a beginner in assembly and i need to write code which lets you to input string and prints the position of every number. I know how to write code to imput string and find out if the...
My first assembler I learned in 1985 - it was IBM-360 Assembler. PC Assembler came to me in 1987.
Hello, how long have you learned assembly? Because I would like to learn it too. You can do everything in assembly, but you must know almost everything.
You can write to to lubko@programmersheaven...
Hi, I am new to assembler, and have just been given a project to design a bike light with various sequences of LEDs. there are 6 LEDs and there will be a button which when pressed will cycle through...
Hi,
Answer to question:
YES
Regards John
1. Get FASM
2. FASM has a sample of DOS COM program - simplest code possible in this universe.
3. Get some DOS tutorials:
http://homepage.mac.com/randyhyde/webster.cs.ucr.edu/www.artofasm...
I would like some input into learning x86 assembly language on a PC. My question is - How do you write beginning assembly language programs without having to navigate the Windows OS? (a.k.a. Win32...
vals then swap elements
}
}
for i = 0 to n-1 do {
print vals
}
Sorry if that's hard to read, you probably don't need the pseudocode. Any help on this would be great. I'm honestly really...
Thanks so much for your help
Tye
shl is an instruction that shifts all bits in a register to the left. The last bit that is shifted out of the register is stored in the carry flag, which you can check with jc/jnc or use adc(add with...