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 SkipVought 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. datac5155

    self help sites

    JOIN ME LUKE, and we will rule the galaxy as father and son! Was that over the top? I can never tell :)- DataC DataC5155 "...NO FATE..."
  2. datac5155

    SVGA pixel question

    sure do :) THE SEGMENT FOR VIDEO MEMORY is 0a000H. CX=X DX=Y mov AX,0A000h mov ES,AX ;Calculate Pixel Address = ((Y*BPL)+X) mov DI,CX mov AX,DX mov CX,320;bytes per line mul CX add DI,AX ;Write Pixel mov [byte ptr ES:DI],40;Red This will only work if you are in 320x200 because 320x200 is...
  3. datac5155

    How to copy one string to another?

    :) Show Off :) You have to leave SOME of the work up to them. But you got me on the E's. I missed the 32-Bit Part the first time I read the question. DataC5155 "...NO FATE..."
  4. datac5155

    How to copy one string to another?

    If you know the length of the string to copy all you need to do is use movsb. cld ES:DI = place to copy to DS:SI = place copying from CX = # of characters to copy REP movsb = Repeat mov until CX = 0 Hope this helps you. "It is the struggle itself that is most...
  5. datac5155

    How To Perminantly Delete???

    It is windows. You can call me crazy, but if I run the program from a pure DOS mode, there is no problem. From a DOS box, it errors on the second open (after a save and delete). Must have something to do with the recycle bin or something, it wont let it access the file or something funky. Thanks...
  6. datac5155

    creating a circle in graphics?

    A circle is just plotting a point around a center X,Y Position. You need to rotate that point around the Z Axis using sin and cos (some people use predfined tables for "speed", but for the sake of data space they are too inaccurate for me). But AmkG is right, bios is bad for drawing...
  7. datac5155

    How To Perminantly Delete???

    Does anyone know how to perminantly delete a file? using the INT21h delete doesnt remove the entry from the disk, just marks the space as free. But I found that if you try to resave something under the same name (after a delete) the program is unable to read the file back in again (I get all...

Part and Inventory Search

Back
Top