| | |
code snipp
Thread Solved |
•
•
Join Date: Nov 2008
Posts: 18
Reputation:
Solved Threads: 0
Assembly Syntax (Toggle Plain Text)
stuff db 0cdh, 20h, 0
•
•
Join Date: Sep 2007
Posts: 33
Reputation:
Solved Threads: 1
wat
this is pretty easy...
it's a 3 byte variable which contains a symbol (0x00CD, or a double-line similar to an equals sign used to make box-drawings in console applications), a space, and a null character.
to print this to the screen you would do something like
you should do some reading on assembly before you start asking questions like this, like this is pretty basic... learn about segment:offset, the stack, data and code segments, basic syntax, etc. first.
this is pretty easy...
it's a 3 byte variable which contains a symbol (0x00CD, or a double-line similar to an equals sign used to make box-drawings in console applications), a space, and a null character.
to print this to the screen you would do something like
asm Syntax (Toggle Plain Text)
mov ah,02h mov dl,0cdh int 21h
you should do some reading on assembly before you start asking questions like this, like this is pretty basic... learn about segment:offset, the stack, data and code segments, basic syntax, etc. first.
Last edited by carson myers; Dec 8th, 2008 at 1:04 pm.
![]() |
Other Threads in the Assembly Forum
- Previous Thread: cmp instruction and conditional jumps
- Next Thread: wat does this do
| Thread Tools | Search this Thread |






