Blame | Last modification | View Log | Download
# file opened: incbin_tooshort.asm1 0000 ; this was changed from fatal error to regular error by request of Neo-spectruman2 0000 ; although this seems not very practical, as the internal address will be derailed,3 0000 ; probably causing extra errors later, but whatever, you should fix errors in your code4 0000 ORG $80005 80006 8000 ; test error upon "too short" due to wrong offsetincbin_tooshort.asm(7): error: file too short: incbin_tooshort.asmincbin_tooshort.asm(7): warning: include data: requested to include no data (length=0)7 8000 INCBIN "incbin_tooshort.asm", 4000, 18 8000 ASSERT $8000 == $ ; nothing was included9 800010 8000 ; test error upon "too short" due to wrong lengthincbin_tooshort.asm(11): error: file too short: incbin_tooshort.asm11 8000 INCBIN "incbin_tooshort.asm", -5, 1012 8005 ASSERT $8005 == $ ; 5 bytes were included13 800514 8005 ; test error upon "too short" due to wrong combination of offset and lengthincbin_tooshort.asm(15): error: file too short: incbin_tooshort.asmincbin_tooshort.asm(15): warning: include data: requested to include no data (length=0)15 8005 INCBIN "incbin_tooshort.asm", -5, -1016 8005 ASSERT $8005 == $ ; nothing included17 800518 8005 ; test error upon "too short" due to wrong combination of offset and lengthincbin_tooshort.asm(19): error: file too short: incbin_tooshort.asm19 8005 INCBIN "incbin_tooshort.asm", 5, 400020 83CB ; N bytes will be included, up to current file length21 83CB ASSERT $8005 + 4000 != $ ; but not 4000 for sure22 83CB# file closed: incbin_tooshort.asmValue Label------ - -----------------------------------------------------------