Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Cuso

  1. Cuso

    Code Modification

    Thank You!! It worked!!!!
  2. Cuso

    Code Modification

    That worked but now instead of appear all the messages. No matter which number I choose it will always answer me "The number is one". =/
  3. Cuso

    Code Modification

    This my modified code but by some reason when I enter the number it writes at the screen all the messages at the same time. For example if I enter 1 it writes: The number is one The number is two The number is three The number is four The number is five What am I doing wrong? Any help will be...
  4. Cuso

    Code Modification

    As anyone can see I'm a newbe in assembly. I'm just trying to learn a bit and practicing. My problem right now is that I just created a program that allows me to enter any number from 1 to 5 and once I enter it the program will display the number I entered but instead of a number it will say the...
  5. Cuso

    Code Help!

    Thank You for your help!
  6. Cuso

    Code Help!

    I have this code but when i excecute it the computer keep beeping and the application freeze. What am I doing wrong? .model small .stack 100h .data memTeclado label byte longBuffer db 20 totalCaract db ? contenido db 20 dup('$') caracter db ? mensaje db "This program...
  7. Cuso

    Need Help Please!

    Thank You for your time and your help. I used the tips that denc4 recommend and worked. Thanks Alot!
  8. Cuso

    Need Help Please!

    I need to create an array of 20 values (bytes) and compute the average. I'm new in this. This is my code for the addition phase: .MODEL SMALL .STACK 100h .DATA arreglo db 3, 8, 5, 3, 9, 2, 1, 4, 5, 11, 2, 1, 12, 10, 7, 17, 18, 6, 14, 13 arrsuma db ? promedio db ? .CODE main proc mov...

Part and Inventory Search

Back
Top