Page 2 of 2 FirstFirst 12
Results 11 to 18 of 18

Thread: Assembler with Delphi - a few questions

  1. #11

    Assembler with Delphi - a few questions

    Quote Originally Posted by chronozphere
    SSE = a processor instruction set. Thought it was created by intel. It is an extension to the x86 instructions. SSE instructions can be used to speed up certain things. maybe for fast acces, moving data efficiently, and floating point stuff....
    I started playing with SSE and it seems pretty easy to learn. Do you know where I can find any tutorials (or mnemonics list)?

  2. #12

    Assembler with Delphi - a few questions

    No sorry.. i've never done anything with it. Only know what it is.

    Ask google
    Coders rule nr 1: Face ur bugz.. dont cage them with code, kill'em with ur cursor.

  3. #13

    Assembler with Delphi - a few questions

    You can find a list of sse1/2 instructions wikipedia or in intel/amd manuals - for example here http://www.intel.com/products/proces...uals/index.htm. Some sse/mmx tutorials are here and here.

  4. #14

    Assembler with Delphi - a few questions

    You can find a list of sse1/2 instructions wikipedia or in intel/amd manuals - for example here http://www.intel.com/products/proces...uals/index.htm. Some sse/mmx tutorials are here and here.
    It's quite easy to learn, indeed... but sse usage often requires changes in non-sse code too (data alignment, suitable structures) and parallelization of some algorithms is not quite easy. On the other side, it's often easier to use SSE instructions instead of FPU instructions to work with floating point values, and a bit faster, too.

  5. #15

    Assembler with Delphi - a few questions

    You can find a list of sse1/2 instructions wikipedia or in intel/amd manuals - for example here http://www.intel.com/products/proces...uals/index.htm. Some sse/mmx tutorials are here and here.
    It's quite easy to learn, indeed... but sse usage often requires changes in non-sse code too (data alignment, suitable structures) and parallelization of some algorithms is not quite easy. On the other side, it's often easier to use SSE instructions instead of FPU instructions to work with floating point values, and a bit faster, too.

  6. #16

    Assembler with Delphi - a few questions

    You can find a list of sse1/2 instructions wikipedia or in intel/amd manuals - for example here http://www.intel.com/products/proces...uals/index.htm. Some sse/mmx tutorials are here and here.
    It's quite easy to learn, indeed... but sse usage often requires changes in non-sse code too (data alignment, suitable structures) and parallelization of some algorithms is not quite easy. On the other side, it's often easier to use SSE instructions instead of FPU instructions to work with floating point values, and a bit faster, too.

  7. #17

    Assembler with Delphi - a few questions

    C-c-c-combobreaker!!
    Peregrinus, expectavi pedes meos in cymbalis
    Nullus norvegicorum sole urinat

  8. #18

    Assembler with Delphi - a few questions

    damn, it said "General Error" on posting >_< lmao

Page 2 of 2 FirstFirst 12

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •