Skip to content

08 Subroutines

Structure

name proc near
    ;code

    ret
name endp
call procName

Example

bcd2bin proc near
    ; code
    ret

bcd2bin endp
2023-01-25

Comments