view lib/alib/fputcr.as @ 3016:eb04ba1c507f

[PATCH 3/3] level2: Include ccbkrn in build again From ec3a9e79eeb1a8bd3b703e4ea9c28ccbb2d641d5 Mon Sep 17 00:00:00 2001 --- level2/coco3/makefile | 24 ++++++++++++------------ level2/coco3/modules/makefile | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-)
author Brett Gordon <beretta42@gmail.com>
date Wed, 29 Oct 2014 23:12:52 +0100
parents 03f26e88b809
children
line wrap: on
line source

****************************************

* Subroutine to print a carriage return 

* OTHER MODULES REQUIRED: FPUTC

* ENTRY: A=path

* EXIT: CC carry set if error (from I$WritLn)
*       B  error code if any.


 nam Output Carriage Return
 ttl Assembler Library Module


 section .text

FPUTCR:
 ldb #$0d
 lbra FPUTC

 endsect