EdouardBERGE / rasm

RASM powerful Z80 assembler
132 stars 16 forks source link

Is there any way to disable read and leave the rest of the forms to include files? #40

Closed Reymon-Real closed 2 months ago

Reymon-Real commented 2 months ago

I am making an OS following the POSIX 1990 standard. This is a university project I am in, but I have encountered the problem that a POSIX 1990 function is called read and the Assembler interprets it as if it were read to include files.

I wanted to know if there is a way to disable the read and only leave the other ways to include files.

EdouardBERGE commented 2 months ago

i'm afraid you will have to replace occurences of 'read' in your source code

Reymon-Real commented 2 months ago

@EdouardBERGE Ok, thanks for the clarification. I really liked RASM, although I can not put read as a tag, I will continue to use it because it is very simple for its ease of use unlike others like Z88k (it cost me a lot to make it work to compile the code) and also RASM is very complete unlike cpctelera that lacks to implement mnemonics that RASM does have (it is not exactly like RASM, but it can compile to the Z80).

I say this to let you know that at least for my part I love RASM.