Skip to content

08 Subroutines

Structure

name proc near
    ;code

    ret
name endp
call procName

Example

bcd2bin proc near
    ; code
    ret

bcd2bin endp
Last Updated: 2023-01-25 ; Contributors: AhmedThahir

Comments