basic-system-cmd/include/asciih.inc

18 lines
229 B
PHP

;
; asciih macro
;
; Copyright (c) 2015 Rob Greene
;
.if .not .definedmacro(asciih)
; ASCII string with high-bit set
.macro asciih string
.repeat .strlen(string),i
.byte .strat(string,i) | $80
.endrep
.endmacro
.endif