title NLF subttl Module from library C_5 : NLF maclib SYSEQU.LIB ; FILE: NLF.MAC ; DATE: 820820:1505 ; FOR: Write CR then LF to channel C ; Write CR then LF to specified channel ; ENTRY : Reg C contains channel no. entry nlf ext putcf nlf: push af ld a,cr call putcf ; CR ld a,lf call putcf ; LF pop af ret end