asm-tag
v1.0.1
Published
compile x64 assembly into a callable function
Downloads
20
Maintainers
Readme
asm-tag
A toy ES6 template tag to take assembler and compile it into an executable function. All credit goes to Fedor Indutny and Tommi Pisto for jit.js and pasm, respectively.
'use strict'
const asm = require('./lib/asm-tag.js')
const fn = asm`
[bits 64]
mov rbx, [rbp-16]
add rax, rbx
`
console.log(fn(203, 14)) // 217, if everything went according to plan!
License
MIT