flamewing

Results 33 comments of flamewing

Two command line options that help with this are: - `-maxerrors `: instructs the assembler to terminate assembly after the given number of errors - `-Y`: suppress all messages about...

That is one interesting idea. I will have to think about it.

Here is the state of what I am thinking: 1. the proposed solution with hard error on plain `moveq` (i.e., `moveq := moveq.l`): ```68k moveq.b #$80,d0 ; no error, sign...

The other option actually also follows 68k syntax, but 68k-**family** syntax instead of 68000 syntax. For example, the 68020's memory indirect postindexed mode: ```68k move.l ([10000.l,a3],d4.l*4,20000.l),d7 ``` Though to be...

From what I can tell, this is intended behavior, since it is [documented](http://john.ccac.rwth-aachen.de:8000/as/as_EN.html#sect_2_10_6_) that the comparison operators have lower precedence; but it is counter-intuitive, and I will fix this so...

I suppose I could add a mode that follows the more standard syntax. Are there any other operators that differ in AS and asm68k?

That is a good idea. I am not sure on how to go about this, though: I want to build all processors by default, so that the instructions on the...

I have been looking over, and this seems like AS is not meant for this to be done. I will need dozens of `#ifdef`s (basically, one for each `code*.c` file)...

Hm. Having the hard flush as an option is definitely a good idea. I'll add it to my todo list.

Can you give more information, please? It is hard to discover what could be going wrong with the absolute lack of information you give. What file did you try to...