view lib/alib/getc.as @ 2784:2594295f9cc7 lwtools-port

Merged Drencor's work
author Boisy Pitre <boisy.pitre@nuance.com>
date Sat, 26 Jan 2013 17:19:06 -0600
parents 03f26e88b809
children
line wrap: on
line source

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

* Subroutine to input one character from std in.

* OTHER MODULES NEEDED: FGETC

* ENTRY: none


* EXIT:  A  character
*        CC carry set if error (from I$Read)
*        B  error code if any

 nam Input Single Character
 ttl Assembler Library Module


 section .text

GETC:
 clra std in
 lbra FGETC

 endsect