hlorenzi / customasm

💻 An assembler for custom, user-defined instruction sets! https://hlorenzi.github.io/customasm/web/
Apache License 2.0
720 stars 56 forks source link

[0.11.8] "expected identifier" after #bankdef #82

Closed ProxyPlayerHD closed 3 years ago

ProxyPlayerHD commented 3 years ago

All i'm trying to do is use this:

#bankdef "whatever"
{
  #addr 0xFC00
  #size 0x0400
  #outp 0
}

and it's formatted exactly like the wiki says, so either the wiki is outdated or i'm overlooking something

hlorenzi commented 3 years ago

Oops! The wiki was outdated. You must name the bank without using quotation marks! I've fixed it in the wiki now.

ProxyPlayerHD commented 3 years ago

oh i see, it's working now. thanks!