ckb-vm 0.20.0-alpha

CKB's Virtual machine
Documentation
1
2
3
4
5
6
7
#include <stdint.h>

uint8_t buffer[4096] __attribute__((aligned(4096))) = {1, 2};

int main() {
    return buffer[0] + buffer[1] - 3;
}