1

I'd like to generate some bytecode for the Flash 10 AVM2 directly, i.e. without AS3. An assembler that produced a SWF file would be ideal.

Does this exist? If not, what's the easiest way to get from assembler → abc → SWF?

cdlane
  • 40,441
  • 5
  • 32
  • 81
also
  • 974
  • 7
  • 21

2 Answers2

4

Not sure if that's what you want but Haxe is opensource. Haxe has also a library that can produce bytecode from Haxe code.

Gama11
  • 31,714
  • 9
  • 78
  • 100
Cristi Băluță
  • 1,295
  • 15
  • 27
  • haXe’s format.abc is close what I’m looking for, but I’d like to be able to write code directly in assembly, not haXe code that generates assembly. If I can’t find a better option, this is probably what I’ll use; the haXe library looks like it’s very well done. – also Aug 02 '09 at 06:21
1

It looks like As3c is what I'm looking for:

As3c is a bytecode compiler for the AVM2 written in C#.

also
  • 974
  • 7
  • 21