Mulscale: Difference between revisions

From EDukeWiki
Jump to navigation Jump to search
New page: mulscale <res> <eax> <edx> <ecx> The formula is<br/> res=(eax*edx)>>ecx This is a math function which is implemented in assembler programing language because it make the calculation fas...
 
Jblade (talk | contribs)
mNo edit summary
Line 5: Line 5:


This is a math function which is implemented in assembler programing language because it make the calculation faster.
This is a math function which is implemented in assembler programing language because it make the calculation faster.
[[Category:EDuke32 specific commands]]

Revision as of 02:41, 21 April 2008

mulscale <res> <eax> <edx> <ecx>

The formula is
res=(eax*edx)>>ecx

This is a math function which is implemented in assembler programing language because it make the calculation faster.