view lib/alib/putspace.as @ 3149:afd0f7d9b514

Add the Sleuth multipass disassembler from Bud Pass Added new directory "3rdparty/utiles/sleuth3" and source files to build "sleuth3" and its utilities. Also added "sleuth3" to the Directories section of "3rdparty/utils/makefile" to faciliate the inclusion of the sleuth3 build.
author Bill Pierce <merlinious999@gmail.com>
date Sat, 04 Feb 2017 18:55:39 +0100
parents 03f26e88b809
children
line wrap: on
line source

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

* Subroutine to print a space to std. out

* OTHER MODULES REQUIRED: FPUTSPACE

* ENTRY: none

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

 nam Output One Space Char. to Std. Out
 ttl Assembler Library Module


 section .text

PUTSPACE:
 pshs a
 lda #1
 lbsr FPUTSPACE
 puls a,pc

 endsect