Extra test
[app-scheme79asm.git] / README
CommitLineData
509643aa
MG
1App-Scheme79asm version 0.001
2=============================
3
4SIMPLE is a LISP processor defined in the 1979
5B<Design of LISP-Based Processors> paper by Steele and Sussman.
6
7The SIMPLE processor expects input in a particular tagged-pointer
8format. This module takes a string containing a sequence of
9S-expressions of the form C<(tag . value)> representing a tagged
10pointer. Here the tag is either a number or one of several predefined
11values (see the source for a full list), and the value is either a
12number or another tagged pointer. These values are laid out in memory
13and a block of verilog code assigning the memory contents to an array
14named C<mem> is printed.
15
16INSTALLATION
17
18To install this module type the following:
19
20 perl Makefile.PL
21 make
22 make test
23 make install
24
25DEPENDENCIES
26
27This module requires these other modules and libraries:
28
29* Data::SExpression
30
31COPYRIGHT AND LICENCE
32
33Copyright (C) 2018 by Marius Gavrilescu
34
35This library is free software; you can redistribute it and/or modify
36it under the same terms as Perl itself, either Perl version 5.24.3 or,
37at your option, any later version of Perl 5 you may have available.
38
39
This page took 0.010071 seconds and 4 git commands to generate.