home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / masm / masm6 / mixed / pasmain.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1990-12-03  |  286 b   |  11 lines

  1. (* Calls assembly module Power2 (defined in PASCAL.ASM)
  2.  * To compile:
  3.  *  PL pasmain.pas pascal.obj
  4.  *)
  5.  
  6. program Asmtest( input, output );
  7. function Power2( a:integer; b:integer ): integer; extern;
  8. begin
  9.     writeln( '3 times 2 to the power of 5 is ', Power2( 3, 5 ) );
  10. end.
  11.