Answers for "assembly language"

44

assembly

synonym of assembly is pain
Posted by: Guest on February-13-2021
14

learn assembly language

dude.. i strongly felt the need to understand 
assembly while reading OS source code
Posted by: Guest on January-02-2021
4

learn assembly

So help me I WILL put funny things on a TI-84
Posted by: Guest on January-11-2021
9

assembly language

An assembly language is a low-level programming language 
designed for a specific type of processor.

//Example//
; hello-DOS.asm - single-segment, 16-bit "hello world" program
;
; assemble with "nasm -f bin -o hi.com hello-DOS.asm"

    org  0x100        ; .com files always start 256 bytes into the segment

    ; int 21h is going to want...

    mov  dx, msg      ; the address of or message in dx
    mov  ah, 9        ; ah=9 - "print string" sub-function
    int  0x21         ; call dos services

    mov  ah, 0x4c     ; "terminate program" sub-function
    int  0x21         ; call dos services

    msg  db 'Hello, World!', 0x0d, 0x0a, '$'   ; $-terminated message
Posted by: Guest on February-21-2021

Code answers related to "assembly language"

Code answers related to "Assembly"

Browse Popular Code Answers by Language