title Module from library INTEGER_2 : SUB32 name ('SUB32') maclib baselib.lib ; Copyright (C) Werner Cirsovius ; Hohe Weide 44 ; D-20253 Hamburg ; Tel.: +49-40-4223247 ; Version 1.0 October 1989 ; Subtract 32 bit integers ; ENTRY Reg pair BC points to first number ; Reg pair DE points to second number ; Reg pair HL points to 32 bit difference ; EXIT Result filled with difference entry sub32 extrn $op32,$sub32 sub32: push hl ld hl,$sub32 ; Load routine jp $op32 ; Go subtract end