title Module from library BASE_2 : CONCHD name ('CONCHD') maclib baselib.lib ; Output constant characters to console ; Copyright (C) Werner Cirsovius ; Hohe Weide 44 ; D-20253 Hamburg ; Tel.: +49-40-4223247 ; Version 1.0 December 1987 ; ENTRY Reg E holds constant character ; Reg B holds number of characters to be printed ; EXIT None entry conchd extrn conout conchd: ld a,e ; Get constant call conout ; .. to console djnz conchd ; Count down ret end