home *** CD-ROM | disk | FTP | other *** search
- // Fictional function to retrieve assembly output for starting object
- // oriented assembler interface routines.
- // Compile line:
- // bcc -c -S -ml -r FICTION
- //┌──────────────────────────────────────────────────────────────────────────┐
- //│ void pascal fiction1(long int x, long int y, long int z, float mult); │
- //│ │
- //│ GAZINTAS: This fictional function has three fictional GAZINTAS. │
- //│ One is integer the other two are long integer. Local variables are │
- //│ calculated by declaring and initializing them. │
- //│ │
- //│ GAZOWTAS: The function returns void. │
- //│ │
- //└──────────────────────────────────────────────────────────────────────────┘
- void pascal fiction1(int x, long int y, long int z);
-
- void pascal fiction1(int x, long int y, long int z){
- register int i1;
- register int i2;
- x=0;
- y=0;
- z=0;
- i1=0;
- i2=0;
- }
-