VoyForums
[ Show ]
Support VoyForums
[ Shrink ]
VoyForums Announcement: Programming and providing support for this service has been a labor of love since 1997. We are one of the few services online who values our users' privacy, and have never sold your information. We have even fought hard to defend your privacy in legal cases; however, we've done it with almost no financial support -- paying out of pocket to continue providing the service. Due to the issues imposed on us by advertisers, we also stopped hosting most ads on the forums many years ago. We hope you appreciate our efforts.

Show your support by donating any amount. (Note: We are still technically a for-profit company, so your contribution is not tax-deductible.) PayPal Acct: Feedback:

Donate to VoyForums (PayPal):

Login ] [ Contact Forum Admin ] [ Main index ] [ Post a new message ] [ Search | Check update time ]


[ Next Thread | Previous Thread | Next Message | Previous Message ]

Date Posted: 23:05:14 12/04/01 Tue
Author: Richard In Texas
Subject: Assembly ¥[ªo¯¸¡I

(Use Stack to pass the parameters)
¼g¤@­Ó°Æµ{¦¡Calc_Num¥h­pºâ
Number = (Var_A * Var_A) - (Var_B * 2) + Var_C - 16

push Var_A
push Var_B
push Var_C
push offset number
call Calc_Num

Answer:
;°²³]³]©Ò¦³­pºâ¤£¶W¹Lone word¡A§_«h´Nµª®×´N¦³°ÝÃD¤F
Calc_num proc
push bp
mov bp, sp
push ax
push bx

mov ax, 8[bp] ;AX = Var_B
mov bx, 2
mul bx ;AX * 2 = DX:AX
mov 8[bp], ax ;2 * Var_B

mov ax, 10[bp] ;AX = Var_A
mov bx, 10[bp] ;BX = Var_A
mul bx ;DX:AX = Var_A * Var_A

sub ax, 8[bp]
add ax, 6[bp] ;AX += Var_C
sub ax, 16

mov bx, 4[bp]
mov [bx], ax

pop bx
pop ax
ret 8 ;sp -= 8 because of 4 parameters
Calc_num endp

[ Next Thread | Previous Thread | Next Message | Previous Message ]

Post a message:
This forum requires an account to post.
[ Create Account ]
[ Login ]
[ Contact Forum Admin ]


Forum timezone: GMT-6
VF Version: 3.00b, ConfDB:
Before posting please read our privacy policy.
VoyForums(tm) is a Free Service from Voyager Info-Systems.
Copyright © 1998-2019 Voyager Info-Systems. All Rights Reserved.