; This module contains an 8086 assembly language template for ; generating a patch module. Repair code should be inserted ; where indicated. The ORG argument must be set to the ; offset of the area in the original module to be patched. ; NAME REPAIR_Vnnnn ; identifying module name CODE SEGMENT WORD COMMON 'CODE' ; segment and class name must match ; that of segment to be patched CGROUP GROUP CODE ; group name must also match ASSUME CS : CGROUP ORG 0XXXH ; offset of area to be patched ; insert repair here ; CODE ENDS END