Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. vonnegut

    ASP.NET 2.0

    So far all the downloads for the .NET 2.0 Beta versions are for a 64 bit machine. Is there some way to make this 64 bit application work on a 32 bit machine ?
  2. vonnegut

    Output of the function

    Is the output 0,1 ,2 ? This is just a guess and not a very educated one. Can somebody help me out ?
  3. vonnegut

    Help with the MOV instruction

    Do you have any suggestions as to which book I should follow to decipher that piece of code ?
  4. vonnegut

    Help with the MOV instruction

    I really appreciate your reply but as a newbie to assembly I would very much like it if you run me down your code. thanks a lot
  5. vonnegut

    Output of the function

    void afunction(unsigned int x, unsigned int y, unsigned int z) { __asm__ ("movl %2, %0" "addl %0, %2" "movl %2, %1" : "=a" (x), "=r" (z) : "b" (y) ); cout << "x = " << x << endl; cout << "y = " << y << endl; cout << "z = " << z << endl; } I am passing in the values 0, 1 and 2 to this...
  6. vonnegut

    Help with the MOV instruction

    Thanks a lot for your reply. But I was confused as to what EDX was. How do I find out the value of EDX?
  7. vonnegut

    Help with the MOV instruction

    Can somebody make me understand the statement: MOV [C23H], EDX Here DS = E50H, ES = 1210H, SI = 50H, BX = F3H, and CX = 9800H. I have to determine the address accessed by the above instruction assuming real-mode operation. I need some conceptual help here,what is real-mode instruction and how...
  8. vonnegut

    Dropdown problem

    Thanks a lot.
  9. vonnegut

    Dropdown problem

    Is it theoritically possible to stall the drop doen action based on an event?Any help would be appreciated.
  10. vonnegut

    Dropdown problem

    I think it would be better to clarify my previous post a little bit.What I really want to do is that whenever an illegal entry in the drop down is clicked,I don't want the drop down to collapse with the value showing through the window.I hope this clarifies my problem a bit.
  11. vonnegut

    Dropdown problem

    I have this webpage for which I want to implement a dropdown.This dropdown will display all the stuff in my itenary.Now what I want to do is that for selective items in the dropdown to be clickable(I am doing the filtering using regular expressions) and for the other entries in my drop down I...

Part and Inventory Search

Back
Top