How to run assembly program using TASM and creating a framework for an assembly program.

Sdílet
Vložit
  • čas přidán 27. 04. 2024
  • How to Setup Run Assembly language Program using TASM DOSBOX a step by step guide to successfully run a Assembly Language Program.
    Steps to run the code are as follows
    1. TASM filename.asm
    2. TLINK filename.obj
    3. TD filename.exe or DEBUG filename.exe
    #8086
    #microprocessor
    #microprocessors
    Video Playlist of 8086 Programming: • Assembly Programming o...
    Video-01 How to install DOSBox and how to start the 8086 program:
    • How to install DOSBox ...
    Video-02 How to run assembly program using TASM and creating a framework for an assembly program:
    • How to run assembly pr...
    Video-03 8086 Program to find largest number in a series of 8 bit numbers
    • 8086 Program to find l...
    Video-04 GCD of Two 8 Bit Numbers | 8086 Assembly Language Program
    • GCD of Two 8 Bit Numbe...
    Video-05 086 Program To Transfer Block of Data using String Instructions
    • 8086 Program To Transf...
    Video-06 Exchange the content of memory location using string instructions
    • Exchange the content o...
    Video-07 8086 Programming to search given character in a string
    • 8086 Programming to se...
    Video-08: Arrange the numbers in Ascending / Descending order| Hindi
    • Assembly program of 80...
  • Věda a technologie

Komentáře • 8

  • @maxmuster7003
    @maxmuster7003 Před 3 měsíci

    I like to use debug to create tiny executable com files and i use batch files as open source container to put all instruction of a routine inside the batch file.

    • @MaheshPawaskar
      @MaheshPawaskar  Před 3 měsíci +1

      Could you guide further for the same.?

    • @maxmuster7003
      @maxmuster7003 Před 3 měsíci

      @@MaheshPawaskar Yes, here is one of these special container batch files to start with some parameter attached to build and modify the routine:
      CENTER.BAT 8 1b "output center align"
      @echo off
      REM CENTER.BAT
      REM Need three parameter (%1 %2 %3) attached.
      REM Usage: CENTER.BAT row color "TEXT"
      echo acs:100>tmp.deb
      echo mov ax,B800>>tmp.deb
      echo mov es,ax>>tmp.deb
      echo mov di,%1>>tmp.deb
      echo mov bx,%1>>tmp.deb
      echo shl di,7>>tmp.deb
      echo shl bx,5>>tmp.deb
      echo add di,bx>>tmp.deb
      echo cld>>tmp.deb
      echo mov si,140>>tmp.deb
      echo lodsb>>tmp.deb
      echo cmp al,FF>>tmp.deb
      echo jnz 0117>>tmp.deb
      echo sub si,141>>tmp.deb
      echo mov bx,50>>tmp.deb
      echo mov cx,si>>tmp.deb
      echo sub bx,si>>tmp.deb
      echo shr bx,1>>tmp.deb
      echo shl bx,1>>tmp.deb
      echo add di,bx>>tmp.deb
      echo mov ah,%2>>tmp.deb
      echo mov si,140>>tmp.deb
      echo lodsb>>tmp.deb
      echo stosw>>tmp.deb
      echo dec cx>>tmp.deb
      echo jnz 0132>>tmp.deb
      echo ret>>tmp.deb
      echo org 140>>tmp.deb
      echo DB "%3", FF>>tmp.deb
      echo.>>tmp.deb
      echo n CENTER.COM>>tmp.deb
      echo rcx>>tmp.deb
      echo 90>>tmp.deb
      echo wcs:100>>tmp.deb
      echo q>>tmp.deb
      debugnul
      del tmp.deb
      CENTER.COM
      del CENTER.COM

    • @maxmuster7003
      @maxmuster7003 Před 3 měsíci

      @@MaheshPawaskar I made some videos(no speech) to share the batch files. Have fun.

    • @MaheshPawaskar
      @MaheshPawaskar  Před 3 měsíci

      please, give link of the video.
      Thank you

    • @maxmuster7003
      @maxmuster7003 Před 3 měsíci

      @@MaheshPawaskar Sorry. I can`t post internet links. Please search in youtube.