KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
yet-another-smalltalk-vm
★ 15
Open GitHub ↗
Smalltalk Virtual Machine
Download README (.md)
Explore Similar Repositories
rack-spyup
:
Spying request and json response
NeoPixel_Painter
:
Light painting project for Arduino Uno + NeoPixel strips
sanguinews
:
Usenet binary poster with multithreading and SSL support
Estimote-iOS-Xamarin
:
Xamarin binding for Estimote's iOS SDK
safeweb
:
Proposition of a faster and more secure Web (MinimaLT + DNSNMC)
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
yet-another-smalltalk-vm
?
Download (.md)
Yet another Smalltalk VM ======================== … is Smalltalk Virtual Machine. It supports Smalltalk as described in Bluebook and partially ANSI Smalltalk with support for class definiton syntax. … is written in C and contains bytecode compiler (used only for compiled code representation - not interpreted), JIT (currently only x86-64 is supported), generational GC with moving GC on new space and mark & sweep on old space. … is tested on x86-64 Linux, Os X and FreeBSD. Usage ----- For building VM you need: Clang or GCC and Cmake. ```sh # withing VM root directory cmake . make all ./st -b smalltalk # compiles Smalltalk kernel and writes to ./snapshot ```