aboutsummaryrefslogtreecommitdiff
path: root/sys/boot/ficl/stack.c
Commit message (Collapse)AuthorAgeFilesLines
* Move sys/boot to stand. Fix all references to new locationWarner Losh2017-11-141-372/+0
| | | | | | | Sponsored by: Netflix Notes: svn path=/head/; revision=325834
* Upgrade to FICL version 3.02. Anything wrong is my fault, everything right isDaniel C. Sobral2002-04-091-9/+7
| | | | | | | | | | | due Jon Mini. PR: 36308 Submitted by: Jon Mini <mini@haikugeek.com> MFC after: 4 weeks Notes: svn path=/head/; revision=94290
* Bring in ficl 2.05.Daniel C. Sobral2001-04-291-1/+68
| | | | | | | | | | This version has a step debugger, which now completely replaces the old trace feature. Also, we moved all of the FreeBSD-specific MI code to loader.c, reducing the diff between this and the official FICL distribution. Notes: svn path=/head/; revision=76116
* Bring in ficl version 2.03. No version bump for loader.Daniel C. Sobral1999-09-291-4/+6
| | | | Notes: svn path=/head/; revision=51786
* Fix includes; we were still pulling in <stdlib.h> in some places.Mike Smith1998-11-041-1/+5
| | | | | | | | Support building a standalone interpreter with 'make testmain', remove win32 and egregious gets() in testmain.c Notes: svn path=/head/; revision=40883
* Add the Ficl (Forth Inspired Command Language) interpreter. If all goes well,Mike Smith1998-11-031-0/+301
this will allow us to manage bloat in the loader by using a bytecoded HLL rather than lots of C code. It also offers an opportunity for vendors or others with special applications to significantly customise the boot process without having to commit to a divergent code branch. This early commit is to allow others to experiment with the most effective mechanisms for integrating FICL with the loader as it currently stands. Ficl is distributed with the following license conditions: "Ficl is freeware. Use it in any way that you like, with the understanding that the code is not supported." All source files contain authorship attributions. Obtained from: John Sadler (john_sadler@alum.mit.edu) Notes: svn path=/head/; revision=40843