mappum / DCPU-16

:floppy_disk: A javascript emulator for DCPU-16 (the computer system in Mojang's new game, 0x10c). Works in browsers and Node.
http://mappum.github.com/DCPU-16/
94 stars 18 forks source link

Please support multi-argument DAT #34

Closed jazzychad closed 12 years ago

jazzychad commented 12 years ago

I know DAT is an implementation specific directive, but it seems lots of other people have allowed DAT to support multiple arguments. e.g.

DAT "hi"

works fine, but

DAT "hi", " there"

fails currently.

mappum commented 12 years ago

Make sure you've refreshed. This should work on the latest version. DAT "hi", "there"

outputs ======= RAM: ======= 0000:[0068]0069 0020 0074 0068 0065 0072 0065

jazzychad commented 12 years ago

ah, so it does. thanks!