Lines Matching +refs:cc +refs:with

20 \ Local variables are defined with the native word '(local)'. We define
24 \ the semicolon are locals that are both defined and then filled with the
25 \ values on stack (in stack order: { a b } fills 'b' with the top-of-stack,
26 \ and 'a' with the value immediately below). Names appearing after the
116 \ word compares X with Y1; if they are equal, C1 is executed, and then
121 \ compare with X. And so on.
125 \ the stack, or replace it with exactly one value; the 'endcase' word
132 \ an 'if..else' that must be terminated with a matching 'then' in 'endcase'.
142 \ on the stack, and each test is supposed to come up with its own boolean
151 add-cc: co { T0_CO(); }
152 add-cc: execute { T0_ENTER(ip, rp, T0_POP()); }
153 add-cc: drop { (void)T0_POP(); }
154 add-cc: dup { T0_PUSH(T0_PEEK(0)); }
155 add-cc: swap { T0_SWAP(); }
156 add-cc: over { T0_PUSH(T0_PEEK(1)); }
157 add-cc: rot { T0_ROT(); }
158 add-cc: -rot { T0_NROT(); }
159 add-cc: roll { T0_ROLL(T0_POP()); }
160 add-cc: pick { T0_PICK(T0_POP()); }
161 add-cc: + {
166 add-cc: - {
171 add-cc: neg {
175 add-cc: * {
180 add-cc: / {
185 add-cc: u/ {
190 add-cc: % {
195 add-cc: u% {
200 add-cc: < {
205 add-cc: <= {
210 add-cc: > {
215 add-cc: >= {
220 add-cc: = {
225 add-cc: <> {
230 add-cc: u< {
235 add-cc: u<= {
240 add-cc: u> {
245 add-cc: u>= {
250 add-cc: and {
255 add-cc: or {
260 add-cc: xor {
265 add-cc: not {
269 add-cc: << {
274 add-cc: >> {
279 add-cc: u>> {
284 add-cc: data-get8 {
289 add-cc: . {
293 add-cc: putc {
297 add-cc: puts {
301 add-cc: cr {
305 add-cc: eqstr {