cpu_physical equ 1f000000h
align cpu_physical + 000000h
times 256 dq 0xdata,0xdata,0xdata,0xdata,0xdata,0xdata,0xdata,0xdata,0xdata,0xdata,0xdata,0xdata,0xdata,0xdata,0xdata,0xdata
align cpu_physical + 100000h
times 256 dq 0xdata,0xdata,0xdata,0xdata,0xdata,0xdata,0xdata,0xdata,0xdata,0xdata,0xdata,0xdata,0xdata,0xdata,0xdata,0xdata
this will actually do what I need which is to align the data at the addresses indicated, however, is there a way to
suppress the writing of data after the first "times 256 dq 0xdata" command executes? after it writes my data 256x it fills out the rest of memory with 90's up to where the next group of 256 lines of data starts. I have a script that takes the object file produced and converts it back into a hex file, which I need to hand edit for what I am ultimately trying to do...loading the processor with code and data through the jtag port.