AtomVM

Tiny Erlang VM
授权协议 LGPL-2.1 License
开发语言 C/C++
所属分类 其他开源、 嵌入式操作系统
软件类型 开源软件
地区 不详
投 递 者 唐海阳
操作系统 嵌入式
开源组织
适用人群 未知
 软件概览

:アトムVM

Brings meme languages AESTHETICS to really small systems.

AtomVM implements from scratch a minimal Erlang VM that supports a subset of ErlangVM features and that is able to run unmodified BEAM binaries on really small systems like MCUs.

Dependencies

Supported Platforms

  • Linux
  • Darwin (MacOS)
  • FreeBSD
  • ESP32 SoC (with IDF and FreeRTOS software platforms, see README.ESP32.Md)
  • STM32 MCUs (with LibOpenCM3, see README.STM32.Md)

AtomVM aims to be easily portable to a new platform with a minimum effort, so more platforms might be supported in a near future.

Getting Started (on Linux)

$ mkdir build
$ cd build
$ cmake ..
$ make
$ ./src/AtomVM ./examples/erlang/hello_world.avm

Project Status

Right now only binaries compiled with OTP 20-23 are supported.

AtomVM is still in its early stages, but it can run simple applications similar to those available in examples and tests.AtomVM might crash with a similar message:

Undecoded opcode: 15
Aborted (core dumped)

This basically means that an instruction has not been implemented yet, or that an outdated version has been used. Please, make sure to always run AtomVM using latest version.

Known limitations

This project is a work in progress, so there are several known limitations, that will prevent to run unmodified software, some of them are:

  • There is a minimal standard library, so several standard functions are missing.
  • Several instructions are not yet implemented.

All of these limitations are going to be fixed in a reasonable amount of time.

相关阅读

相关文章

相关问答

相关文档