Curriculum
This System Software program demonstrates a sequence of instructions in SIC/XE to copy a character string to another char string.
Line Number | Code | Comments |
---|---|---|
1 | LDA #5 | |
2 | STA ALPHA | |
3 | LDA #90 | |
4 | STCH C1 | |
5 | ALPHA RESW 1 | |
6 | C1 RESB 1 |