llvm-dcpu16

LLVM backend for dcpu-16 processor

  • 所有者: llvm-dcpu16/llvm-dcpu16
  • 平台:
  • 许可证: Other
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

LLVM backend for DCPU-16

DCPU-16 is the processor from Mojang's new game 0x10c.
This project has a goal to make a full-featured LLVM backend for DCPU-16 and
port Clang to support this architecture.

Currently llvm backend and Clang support are nearly fully implemented.

Simple C SDK

You can download a simple C SDK, which includes clang with the binutils port for dcpu16.
It is Makefile based and contains a very simple C test program to demonstrate how you can develop your own program.

####Download####
You can find different precompiled packages for linux here.

There is also a very simple build script, which will assemble all needed parts for building the SDK yourself.

Please, let us know, if it does not work for you.

Building

First, of all, you need to install prerequisites:

sudo apt-get install gcc g++ git subversion git-svn make\
 perl gawk expect tcl texinfo bison autoconf automake cmake

Note, that when your python executable points to python3 (you can check that by running python --version)
you have to replace "cmake .." with "cmake -DPYTHON_EXECUTABLE=/path/to/python2 .." in the following steps (path is /usr/bin/python2 in most cases)

Next, get the sources and build it:

git clone git://github.com/llvm-dcpu16/llvm-dcpu16.git # Checkout LLVM
cd llvm-dcpu16/tools
git clone git://github.com/llvm-dcpu16/clang.git # Checkout Clang
mkdir ../cbuild
cd ../cbuild
cmake ..
make -j4

Using LLVM-DCPU16

Consider the following C file:

fib.c:

int fib(int n) {
  int cur = 1;
  int prev = 1;
  for (int i = 0; i < n; i++) {
    int next = cur+prev;
    prev = cur;
    cur = next;
  }
  return cur;
}

int main(void) {
  return fib(5);
}

Now, let's translate C to DCPU16 assembly:

bin/clang -ccc-host-triple dcpu16 -S fib.c -o fib.s

We generate DCPU16 v1.7 ASM with GAS compatible syntax. Most online
assemblers won't work. Please use the binutils port for DCPU16 to assemble and
link your program and then use an DCPU16 v1.7 compatible emulator to test your
program.

Enjoy and, please, report bugs!

主要指标

概览
名称与所有者llvm-dcpu16/llvm-dcpu16
主编程语言C++
编程语言Vim script (语言数: 10)
平台
许可证Other
所有者活动
创建于2012-04-05 07:50:01
推送于2016-07-02 21:32:08
最后一次提交2012-07-04 19:52:05
发布数0
用户参与
星数212
关注者数14
派生数20
提交数83.9k
已启用问题?
问题数119
打开的问题数19
拉请求数70
打开的拉请求数1
关闭的拉请求数6
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?