Package detail

asm-tag

compile x64 assembly into a callable function

asm-tag, interpoliteral, asm, nasm

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