Skip to content

Instantly share code, notes, and snippets.

View lartpang's full-sized avatar
💪
Completing a Ph.D...

Pang lartpang

💪
Completing a Ph.D...
View GitHub Profile
@lartpang
lartpang / MUL(32*32)
Created October 3, 2017 15:10
汇编指令MUL实现32位乘以32位
MUL32 PROC NEAR
;***************************************************************
; 32 bit multiplication routine
; multiplies DX:AX x CX:BX
; returns 64 bit product in DX:AX:CX:BX
;***************************************************************
PUSH SI
PUSH DI