Addressing Modes of 8086 | Hindi

Sdílet
Vložit
  • čas přidán 23. 05. 2024
  • #8086
    #microprocessor
    #microprocessors
    PPT: drive.google.com/file/d/1wms6...
    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 8086 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 Program to search given character in a string
    • 8086 Programming to se...
    Video-08 Assembly program of 8086 to arrange the numbers in Ascending / Descending order| Hindi
    • Assembly program of 80...
  • Věda a technologie

Komentáře • 4

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

    Very good.

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

    Adressing with memory location using segment:offset, default is the data segment DS:
    mov al, [1000h] ; ds:1000h
    mov al, [bx] ; ds:bx
    mov al, [di] ; ds:di
    mov al, [si] ; ds:si
    Adressing with memory location using segment:offset, default is the stack segment SS:
    mov al, [bp] ; SS:bp

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

      I want very brief description. So i purposefully skip some parts.