pcs/sinterp.mac

20 lines
552 B
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

;***************************************
;* TIPC Scheme '84 Runtime Support *
;* Interpreter Macros *
;* *
;* (C) Copyright 1984 by Texas *
;* Instruments Incorporated. *
;* All rights reserved. *
;* *
;* Date Written: 2 May 1984 *
;* Last Modification: 14 Sept. 1984 *
;***************************************
; Call "printf" to produce error message
error macro args
irp txt,<args>
lea BX,txt
push BX
endm
jmp printf_c
endm