Aidan Khoury

Results 31 comments of Aidan Khoury

You have to explicitly open one of your defined classes after opening a reclass file. The last opened state is not saved in the reclass file, but would make a...

I'm sure if you compile using the windows XP toolchain it'll work.

@lyqingye @Unc3nZureD Make sure you have MFC installed. You can check this in the Visual Studio Installer.

Smeckels was right on. Hooray for no bugs

Yeah I'm aware of this issue. It's been around since I added the scintilla editor to the disassembly. I'll try to get this done in my spare time.

Maybe I am misinterpreting the code, but what is the point of the extra or in `cancelled = cancelled || user_cancelled();` ? Could you not simply do `cancelled = user_cancelled();`?...

Yeah this issue is very annoying. I've tried fixing it once and was unable to come up with a solution without breaking the language flex. It has something to do...

These issues are ironically not issues with any of the java code, they are issues with my lexical generator and language rules - [_NASMLexer.flex](https://github.com/ajkhoury/JetBrains-NASM-Language/blob/master/src/com/nasmlanguage/_NASMLexer.flex) and [NASM.bnf](https://github.com/ajkhoury/JetBrains-NASM-Language/blob/master/src/com/nasmlanguage/NASM.bnf) respectively. These two files...

I really appreciate it! I have updated much of the bnf a jflex today. Your `macros.asm` file should now parse without errors as is, though I was not able to...

Ignoring case is something I partially do in the regular expression tokens, completely ignoring case shouldn't be too hard to complete. Yes there are still a handful of instructions that...