fix comments

This commit is contained in:
~d6 2021-12-27 20:35:23 -05:00
parent c15f60cd64
commit 8a31ad4c8c
2 changed files with 3 additions and 4 deletions

View File

@ -1,5 +1,6 @@
( math32.tal ) ( math32.tal )
( ) ( )
( This library supports arithmetic on 32-bit unsigned integers. )
( 32-bit integers are represented by two 16-bit integers ) ( 32-bit integers are represented by two 16-bit integers )
( x** means xhi* xlo* ) ( x** means xhi* xlo* )
@ -7,7 +8,6 @@
%RTN { JMP2r } %RTN { JMP2r }
%TOR { ROT ROT } ( a b c -> c a b ) %TOR { ROT ROT } ( a b c -> c a b )
%TOR2 { ROT2 ROT2 } %TOR2 { ROT2 ROT2 }
%POP4 { POP2 POP2 }
%COMPLEMENT32 { SWP2 #ffff EOR2 SWP2 #ffff EOR2 } ) %COMPLEMENT32 { SWP2 #ffff EOR2 SWP2 #ffff EOR2 } )
( bitcount: number of bits needed to represent number ) ( bitcount: number of bits needed to represent number )

View File

@ -1,7 +1,6 @@
( math32.tal ) ( test-math32.tal )
( ) ( )
( 32-bit integers are represented by two 16-bit integers ) ( methods for testing math32 and emitting output )
( x** means xhi* xlo* )
%EMIT { #18 DEO } ) %EMIT { #18 DEO } )
%DIGIT { #00 SWP ;digits ADD2 LDA EMIT } %DIGIT { #00 SWP ;digits ADD2 LDA EMIT }