; test7 - subroutines begin: mov ax, 2 mov bx, 3 jsr add ; getting back here from 'add' subroutine, ax must be 5 end: hlt add: add ax, bx ret