Forum: Assembly Jun 10th, 2009 |
| Replies: 8 Views: 1,348 Hi. I am trying to print a single digit decimal number on to the screen. So far I've come out with this code.
mov ax, 3
var db '$'
mov bx, offset var
add ax, 30h
mov [bx], ax
add bx,... |
Forum: C++ Jun 8th, 2009 |
| Replies: 12 Views: 502 I don't know why u think I gave u tht idea. It is something which comes with your processor. I guess a compiler is designed for a specific processor architecture. |
Forum: C++ Jun 8th, 2009 |
| Replies: 12 Views: 502 not sure. However, I know it has the value of 2 (decimal). So whatever the output I must be able to understand it is '2'... |
Forum: C++ Jun 8th, 2009 |
| Replies: 12 Views: 502 I am sort of in a pre-reverse-engineering phase of reverse engineering. I haven't started reverse engineering yet. So its kind of imperative that I understand asm. I tried using an interrupt, it... |
Forum: C++ Jun 8th, 2009 |
| Replies: 12 Views: 502 Hmm, I haven't come across processors that have no programmed registers. Perhaps instead of AX they probably have some other convention. For me it does not make sense if processors don't have... |
Forum: C++ Jun 8th, 2009 |
| Replies: 12 Views: 502 Your mother board has a processor! So definitely they should have registers. And I am pretty sure of the registers part, because I just wrote some assembly instructions and executed them...in vc++... |
Forum: C++ Jun 7th, 2009 |
| Replies: 12 Views: 502 How do we output value in register AX? |
Forum: Python Jun 23rd, 2008 |
| Replies: 2 Views: 597 On another machine I have python 2.4 installed. For this version do we have to place the python24.dll along with the exe? |
Forum: Python Jun 22nd, 2008 |
| Replies: 2 Views: 597 I've create a C program that makes a call to routines which I create inside of python...however when I copied the final exe to another machine the program crashed saying it couldn't find the... |
Forum: MS SQL Mar 7th, 2007 |
| Replies: 9 Views: 8,427 Is it possible to get that record as the only record in the record-set?
PS: I hope you know what a result-set is...? It is just the records returned after executing a select query. |
Forum: MS SQL Mar 6th, 2007 |
| Replies: 9 Views: 8,427 Is there a way to isolate the nth record from a table using sql queries alone? The table is a non relational one and you cannot use any temporary tables...Do u think there is a possible solution for... |
Forum: Windows Vista and Windows 7 Feb 8th, 2007 |
| Replies: 1 Views: 3,015 Yes I've read an article that says the most of the security features in Vista are as such so as to protect MS from negative publicity...
... |
Forum: Community Introductions Jan 8th, 2007 |
| Replies: 4 Views: 1,012 Hello people. I have just recently joined this space and introduced myself with a blog. You can click here (http://www.daniweb.com/blogs/blog139210.html) to view it.
Other than that I am a geek in... |
Forum: C# Jan 7th, 2007 |
| Replies: 0 Views: 2,403 Well, for all those who do not know me: my name is arun. But this name is all too common in this world. So well for online purposes I have another name - deostroll. How I got that name? It wasn't... |
Forum: C++ Jan 7th, 2007 |
| Replies: 6 Views: 2,881 Hey thanx very much for your advice. It was valuable.
What if you were to design your own version of a 2d textbox?
Your solution makes the cursor to blink; okay that part is fine. But what if... |
Forum: C++ Jan 7th, 2007 |
| Replies: 6 Views: 2,881 I have designed my own version of cout called gcout that works like cout but in graphics mode. But I don't know the idea behind how to make a caret (or a cursor that blinks).
Does this caret thing... |