Embedded Systems
williams.lst
Associated article: Homegrown Debugging--386 Style
Tags: Embedded Systems
_HOMEGROWN DEBUGGING -- 386 STYLE!_
by Al Williams
[LISTING ONE]
;******************************************************************************
;* File: BREAK386.ASM *
;* BREAK386 "main programs". Contains setup386, clear386, break386 and *
;* int1_386. *
;* Williams - June, 1989 *
;* Compile with: MASM /Ml BREAK386; *
;******************************************************************************
.MODEL small
.386P
public _break386,_clear386,_setup386,_int1_386
; Set ...


