Given a Prolog program, is there any GNU Prolog command to view the WAM code relative to that program?
Asked
Active
Viewed 286 times
1 Answers
6
Yes, you can stop the compiler after any stage ( WAM, mini-assembly, assembly, etc).
To stop after WAM code is produced, use flag -W
or -w
with gplc
.

gusbro
- 22,357
- 35
- 46
-
Great! Thanks a lot.. (I don't know why my question was initially heavily downvoted..) – MadHatter Dec 15 '15 at 16:12