Posted Fri Jun 27, 2003 9:44 AM
Posted Fri Jun 27, 2003 9:56 AM
Posted Fri Jun 27, 2003 10:05 AM
Pitfall Harry said:
Posted Fri Jun 27, 2003 2:04 PM
Posted Fri Jun 27, 2003 4:22 PM
rixard said:
Posted Fri Jun 27, 2003 10:59 PM
Posted Sat Jun 28, 2003 9:44 AM
Posted Tue Jul 1, 2003 7:17 AM
Posted Tue Jul 1, 2003 9:07 AM
Posted Tue Jul 1, 2003 2:02 PM
Posted Tue Jul 1, 2003 5:59 PM
Posted Tue Jul 1, 2003 6:03 PM
Posted Tue Jul 1, 2003 9:00 PM
Posted Tue Jul 1, 2003 9:06 PM
dew2050 said:
Posted Wed Jul 2, 2003 1:40 PM
SmileyDude said:
Posted Thu Jul 3, 2003 10:00 AM
Eckhard Stolberg said:
Posted Thu Jul 3, 2003 1:36 PM
sta WSYNC nop nop nop nop nop nop nop nop nop nop sta COLUBKthen the background colour would change after the first TIA pixel has already been drawn, because the STA COLUBK would finisch it's write cycle at CPU cycle 23 (which is TIA cycle 69, which is one TIA cycle after the horizontal blank period).
Posted Sat Jul 5, 2003 9:42 AM
Eckhard Stolberg said:
Posted Mon Jul 7, 2003 11:59 AM
Posted Mon Jul 7, 2003 1:38 PM
dew2050 said:
dew2050 said:
lda #10 nextblank: sta WSYNC dex bpl nextblank
ldy GraphicsData ;Get number of blank lines at top nextblankline1: sta WSYNC dey bne nextblankline1 ldx #0;Index of graphics data ldy GraphicsData+1 nextdrawline: sta WSYNC lda GraphicsData1,x sta PF0 lda GraphicsData2,x sta PF1 lda GraphicsData3,x sta PF2 nop ;Some NOPs in here, I'm not going to cycle count nop lda GraphicsData4,x sta PF0 lda GraphicsData5,x sta PF1 lda GraphicsData6,x sta PF2 inx dey bne nextdrawline ldy GraphicsData+2 ;Get number of blank lines at bottom nextblankline2: sta WSYNC dey bne nextblankline2 GraphicsData: .byte 20;10 blank lines at top .byte 150;150 lines of graphics .byte 22;22 blank lines at bottom GraphicsData1: .byte ;150 bytes of data for left PF0 GraphicsData2: .byte ;150 bytes of data for left PF1 GraphicsData3: .byte ;150 bytes of data for left PF2 GraphicsData4: .byte ;150 bytes of data for right PF0 GraphicsData5: .byte ;150 bytes of data for right PF1 GraphicsData6: .byte ;150 bytes of data for right PF2
Posted Mon Jul 7, 2003 10:15 PM
Quote
Posted Mon Jul 7, 2003 11:30 PM
dew2050 said:
include File1 include File2 include File3
include File3 include File2 include File1
lda #$10 sta $80Is completely different from:
sta $80 lda #$10
TMP EQU $80 LDA TEMPis really just:
LDA $80because the label TEMP gets replaced by the $80. So too your INCLUDE statement gets replaced, right there, with the contents of the included file.
Posted Tue Jul 8, 2003 12:06 AM
Posted Tue Jul 8, 2003 1:35 AM
dew2050 said:
0 members, 0 guests, 0 anonymous users