Assembly
An assembly language is a low-level language for programming computers.
Forum Post

Odd and Even Numbers Help!!!

Please help me to solve this mystery? write a program for odd and even numbers from 1 to hundred in Assembly Language?
Forum Post

output format

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...
Forum Post

Re: Need help as soon as possible

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...
Forum Post

Re: Need help as soon as possible

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...
Forum Post

Re: learning assembly...

This book will help: http://webster.cs.ucr.edu/AoA/DOS/AoADosIndex.html
Forum Post

Re: learning assembly...

hi want to learn assembly language programming . so pls help to learn by any books
Forum Post

Re: Need help as soon as possible

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...
Forum Post

Re: Need help as soon as possible

yes, i meant that, so could you finish my code, plz, this would be a big favour for me
Forum Post

Re: Need help as soon as possible

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...
Forum Post

Re: Need help as soon as possible

.model small .stack 100h .data msg DB "Input string", 13, 10, "$" maxlength db 254 length db "?" string db 254 dup ("$") enter db 13, 10, "$"...
Forum Post

Need help as soon as possible

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...
Forum Post

Re: learning assembly...

My first assembler I learned in 1985 - it was IBM-360 Assembler. PC Assembler came to me in 1987.
Forum Post

Re: learning assembly...

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...
Forum Post

LED Sequence

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...
Forum Post

Re: learning assembly...

Hi, Answer to question: YES Regards John
Forum Post

Re: learning assembly...

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...
Forum Post

Re: learning assembly...

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...
Forum Post

Assembly Code Project Help

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...
Forum Post

Re: assembly language rookie

Thanks so much for your help Tye
Forum Post

Re: assembly language rookie

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...
 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.