home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Jason Aller Floppy Collection
/
181.img
/
TASM-101.ZIP
/
SHOWNEW.PRO
< prev
next >
Wrap
Text File
|
1988-10-31
|
674b
|
23 lines
/* SHOWNEW.PRO */
global predicates
popmessage(string) - (i) language c /* predicate called from
assembly language procedure */
from_asm - language c as "_from_asm" /* define public name of
the assembly language
procedure */
clauses
popmessage(S) :-
str_len(S,L),
LL=L+4,
makewindow(13,7,7,"window",10,10,3,LL),
write(S),
readchar(_),
removewindow.
goal
from_asm. /* call assembly language procedure */