1
0
mirror of https://github.com/wfjm/w11.git synced 2026-03-01 01:50:01 +00:00
Files
wfjm.w11/tools/asm-11/mlib/vecclr.mac
wfjm 82349ddcee asm-11 .list update; tcode updates
- tools/bin
  - asm-11
    - add minimal .list,.nlist (cnd,me,meb) directive support
    - add -(n)list options
- tools/asm-11
  - tests(-err): some tuneups
  - mlib: some macros added, some tuneups
- tools/tcode/cpu_(details|mmu).mac: use rt?jmp, hta??? macros
2023-01-28 08:35:37 +01:00

11 lines
290 B
Plaintext

; $Id: vecclr.mac 1359 2023-01-27 20:58:50Z mueller $
; SPDX-License-Identifier: GPL-3.0-or-later
; Copyright 2023- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
;
; reset vector to catcher
;
.macro vecclr,name
mov #name+2,@#name
clr @#name+2
.endm