yuv422 / z80editor

Z80 eclipse editor targeting WLA-DX assembler
GNU General Public License v2.0
9 stars 1 forks source link

section attribute 'semisubfree' unrecognized #3

Closed sverx closed 4 years ago

sverx commented 5 years ago

This code:

.org $0400 
.section "Initialize mapper and RAM" semisubfree
; This maps the first 48K of ROM to $0000-$BFFF and resets RAM mapper to $00 too
; this section must exist within first 1K of ROM, thus it's semisubfree (.org $0400)
init_mapper:
[...]

gives back this message:

extraneous input 'semisubfree' expecting RULE_NEWLINE

sverx commented 5 years ago

I just created #4 PR

sverx commented 4 years ago

also, ramsection can have an align attribute... I added that and it's in the same PR

sverx commented 4 years ago

Fixed! Thanks :)