


June Daemon News out and about 7
BSDJoe writes "The June daemonnews newsletter has been posted" Included in this issue are an introduction to the ports system, a length tutorial devoted to writing writing a CAM SCSI controller driver, and a great editorial about how to attract users without dumbing down.
NP:-foo (Score:2)
Re: (Score:2)
Re:Assembly and Ports (Score:2)
You can also fetch and run CVSup very quickly and easily (as root) by issuing pkg_add -r cvsupit, which will go get the CVSupit package (a CVSup wrapped for easy installation and use), install it, and prompt you for what to do next.
Although these instructions are specific to FreeBSD, CVSup is an excellent tool for dealing with any source tree, including the other BSDs.
HTH!
Assembly quirks? (Score:2)
Re:Assembly quirks? (Score:2)
Re:Assembly quirks? (Score:1)
Re:Assembly quirks? (Score:1)
Even memory verification aside, accessing something which is located in memory is slower than accesing a register. For instance:
mov eax, ebx
Is always faster than the single instruction:
mov eax, [ebx]
This is simply because registers are located in the processor and can be accessed in a single clock cycle, whereas even very fast cache RAM still takes a bit more than this, not to mention cache misses, et cetera.