| |
Chico
Registered: Feb 2003 Posts: 12 |
append sourcecode in TAss
hi,
does any of you know how I can append sourcecode by disk in the Turbo-Assembler? i can´t find any function for this.
|
|
| |
Scout
Registered: Dec 2002 Posts: 1570 |
The only way to do it is by reading sourcecode which was written as a SEQ-file.
<-W : write as SEQ-file
<-E : read SEQ-file (from current position)
Hope this helps. |
| |
Oswald
Registered: Apr 2002 Posts: 5094 |
you can also export selected parts of a source into .seq, set marks "start" and "end" then: <- B W <filename> (block, write) |
| |
WVL
Registered: Mar 2002 Posts: 902 |
Quote: you can also export selected parts of a source into .seq, set marks "start" and "end" then: <- B W <filename> (block, write)
btw, you can set marks start and end by <- M S (mark start) and <- M E (mark end) |
| |
Chico
Registered: Feb 2003 Posts: 12 |
thanx all! @Scout: that´s exactly what I need, thanx! :-) |