Recent content by chewi

  1. C

    Help with this emu8086 assembly language problem please

    thank you so much this fixed the repititive outputs, i wonder where should i put th sub to make the output uppercase
  2. C

    Help with this emu8086 assembly language problem please

    im sorry if i wasnt really clear with what i say. we just started lesson with this assembly language ang I am having hard time understanding the functions and how really the algorithms work. i hope you all understand
  3. C

    Help with this emu8086 assembly language problem please

    .model small .code org 0100h call clr_regs jmp drill_exer2 .data first_char db ? stop_char db ? text1 db 10, "Enter start letter (lowercase letter only): " ,20h, "$" text2 db 13,10, "Enter...
  4. C

    Help with this emu8086 assembly language problem please

    i tried to put print space character but the output becomes the 2nd picture attached. what could seem to be the problem?
  5. C

    Help with this emu8086 assembly language problem please

    .model small .code org 0100h call clr_regs jmp drill_exer2 .data first_char db ? stop_char db ? text1 db 10, "Enter start letter (lowercase letter only): " ,20h, "$" text2 db 13,10, "Enter...
  6. C

    Help with this emu8086 assembly language problem please

    Summary:: my code has been successfully showing the right decrement of the letter. however, i tried to put space in between the letter output but its output became repititive letters. this is the original output when i try to put space it become like this i want to put spaces on the output...
Back
Top