| OPEN FORUM | ||
| Loader
	 on Ace |  This short program will enable Ace owners to enter machine code in hex or decimal form. It is short I have not thought it necessary to include notes. | |
| MACHINE CODE LOADER Simon S. Cross. 1983
	   : INPUT QUERY LINE ; : D DECIMAL ; : H 16 BASE C! ; | DEFINER CODE CLS ." No. bytes to be entered ? " INPUT CR CR ." Hexadecimal or decimal ? (h/d) " INPUT CR 0 DO INPUT C, LOOP DECIMAL 253 C, 233 C, CR CR DOES> CALL ; Loader by Simon Cross |