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:
Text File  |  1990-12-11  |  326 b   |  13 lines

  1. // Listing 4: INPUT2.CPP.
  2. // inline assembly input() referencing C++ names
  3.  
  4. void statistician::input(int i)
  5. {
  6.   asm {
  7.     mov si, word ptr this     // Point to object data with si
  8.     mov ax, word ptr i        // Load AX with i
  9.     add word ptr [si].sum, ax // sum += i
  10.     inc word ptr [si].n       // n++
  11.   }
  12. }
  13.