Sujet : Re: Stack vs stackless operation
De : zbigniew2011 (at) *nospam* gmail.com (LIT)
Groupes : comp.lang.forthDate : 26. Feb 2025, 12:41:02
Autres entêtes
Organisation : novaBBS
Message-ID : <6af3cb4352635b371fbc47099e6ec565@www.novabbs.com>
References : 1 2 3 4
User-Agent : Rocksolid Light
These words might make sense connected to a sorting application. 1]
Define those words there and don't clobber the global name space.
These words, as I already wrote, were just
examples to illustrate the approach, which
isn't limited to operations commonly associated
to do sorting kind of work.
I created also ROR/ROL words, that have nothing
to do with any sorting processes:
ROR ( n1 u -- n2 ? )
xor AX,AX
pop CX
pop DX
ror DX,CL
adc AX,0
jmp DPUSH
What for? At the moment just tinkering with OOS
approach, trying to explore it some more.
--