Forum: Assembly Jul 12th, 2006 |
| Replies: 3 Views: 1,758 Re: Displaying numeric data Separation code you need to develop .
It's easy, just mask the upper nibble(4 bit) and get lower nibble .
mask the lower nibble and shift 4 times to left and get the upper nibble.
AND the data... |
Forum: Assembly Jul 12th, 2006 |
| Replies: 3 Views: 1,758 Re: Displaying numeric data Var contains data which will be evaluated as ASCII , but as 4 is in deciaml it will be evaluated as ASCII value 4 , which is a nonprintable chracter.
You need to convert 4 to ASCII "4" . To... |
Forum: VB.NET Jul 12th, 2006 |
| Replies: 3 Views: 10,895 |
Forum: Assembly Jul 12th, 2006 |
| Replies: 4 Views: 1,922 |
Forum: Assembly Jul 11th, 2006 |
| Replies: 4 Views: 2,972 Re: hardware interrupt hangs DOS uses a internal DTA buffer to do it's internal disk access job.
Also u shold not interrupt the DOS in the middle of some work.. As DOS in nonreentrant.
U shold check the status of DOS BUSY FLAG... |
Forum: Assembly Jul 11th, 2006 |
| Replies: 10 Views: 6,177 Re: com vs. exe Actual EXE MZ header...
START(hex) OFFSETS(dec) DISCRIPTIONS
00 00 Always 4D 5A. Marks this file as an .EXE file
*02 02 Remainder after dividing load module's size by 512
*04 04 Size of file in 512... |
Forum: Assembly Jul 11th, 2006 |
| Replies: 10 Views: 6,177 |
Forum: Assembly Jul 11th, 2006 |
| Replies: 4 Views: 1,922 Re: Segmentation fault || Istruction OUT Linux runs in 32bit protected mode whre all ports are blocked .
The code u r showing will only gonna work in real mode (i.e. 16 bit , MsDos style).
If you really need to execute in/out instruction... |
Forum: C Jul 11th, 2006 |
| Replies: 5 Views: 1,461 |
Forum: C Jul 11th, 2006 |
| Replies: 4 Views: 4,082 Re: DLL injection Just do a while(1) loop and inside read all running prosesses by using PSAPI . CreateToolhelpSnapshot(..) as far i can remember .
Next do a CreateRemoteThread for all process (you need to have... |
Forum: VB.NET Jul 11th, 2006 |
| Replies: 3 Views: 10,895 Re: VB. NET telnet client You need to learn how to write network programming using Socket .
Use the socket to connect to a host by ip or resolve the ip by DNS search , and to the port 23.
Upon connect you need to parse the... |
Forum: VB.NET Jul 11th, 2006 |
| Replies: 2 Views: 1,495 Re: Windows Socket Issue You r tring to write a GUI programming but using Console output .
Please change the Console.**** to something else in GUI |
Forum: PHP Jun 18th, 2005 |
| Replies: 2 Views: 2,320 |