masm 1.0.0-dev+1 copy "masm: ^1.0.0-dev+1" to clipboard
masm: ^1.0.0-dev+1 copied to clipboard

Dart 1 only

Transformer to compile .asm files via MASM32.

dart_masm #

Pub transformer that compiles .asm files to .exe.

About #

I created this for use with my experiment WinDart, to have Dart files in my web directory compiled to MASM Assembly, and then assembled and linked to .exe files.

Installation #

You will need MASM32 installed, and it to be installed to C:\masm32. Alternatively, you can pass an masm_path in the configuration, and ML and LINK will be run from that directory.

dependencies:
  masm: ^1.0.0-dev needs

Usage #

This library is a transformer, and supports some options.

transformers:
- windart
- masm

Supported options:

  • run (bool) - If set to true, then the executable will be run on completion.
  • run_args (List) - Can be included to pass them to resulting executable.
  • ml (Map) - Options to pass to ML. Option values should be strings, or true.
  • link - Same as ml (above), but these will be passed to LINK.
  • masm_path (String) - The path to the MASM installation. Default: "C:\\masm32"

Defaults:

run: false
ml:
  c: true
  coff: true
  Cp: true
link:
  SUBSYTEM: CONSOLE
  LIBPATH: "C:\\masm32\\lib"
0
likes
15
pub points
0%
popularity

Publisher

unverified uploader

Transformer to compile .asm files via MASM32.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

barback, merge_map, path

More

Packages that depend on masm