home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
MAGAZINE
/
MISC
/
PCTV1N6.ZIP
/
INPUT2.CPP
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1990-12-11
|
326 b
|
13 lines
// Listing 4: INPUT2.CPP.
// inline assembly input() referencing C++ names
void statistician::input(int i)
{
asm {
mov si, word ptr this // Point to object data with si
mov ax, word ptr i // Load AX with i
add word ptr [si].sum, ax // sum += i
inc word ptr [si].n // n++
}
}