Ok... I haven't used debug in forever, and not a whole lot when I did ;-)
I just noticed recently noticed you can't use Segments like...
MOV AX,DS:[SI]
MOV ES:[DI],AX
but you can use...
DS:
-and-
ES:
by them selfs...
So to do the above move commands would you say...
DS:
MOV AX,[SI]
ES:
MOV [DI],AX
If so, do you have to switch to es: everytime you want to address from it, or does it stay current until you switch back?
also, what is the default?
SS:
-or-
DS:
Thanks,
-JS-
Have Fun, Be Young... Code BASIC
-Josh
PROGRAMMER: Red-eyed, mumbling mammal capable of conversing with inanimate objects.
I just noticed recently noticed you can't use Segments like...
MOV AX,DS:[SI]
MOV ES:[DI],AX
but you can use...
DS:
-and-
ES:
by them selfs...
So to do the above move commands would you say...
DS:
MOV AX,[SI]
ES:
MOV [DI],AX
If so, do you have to switch to es: everytime you want to address from it, or does it stay current until you switch back?
also, what is the default?
SS:
-or-
DS:
Thanks,
-JS-
Have Fun, Be Young... Code BASIC
-Josh
PROGRAMMER: Red-eyed, mumbling mammal capable of conversing with inanimate objects.