tdata (basic) BUTTERFLY no color in the next x16.

This is the starting place for reporting bugs to the team. We will pass bug reports on to the developers after validating the reports.

You can report bugs in hardware, operating system (KERNAL or BASIC ROMs), the emulator, or the Demo library. For bugs specific to downloaded programs, use the download forum.
Post Reply
funkheld
Posts: 260
Joined: Mon Feb 26, 2024 11:11 am

tdata (basic) BUTTERFLY no color in the next x16.

Post by funkheld »

Hi good afternoon.

tdata (basic) BUTTERFLY no color with latest x16 emulator.

greeting
Attachments
tdata.jpg
tdata.jpg (50.76 KiB) Viewed 512 times
User avatar
JimmyDansbo
Posts: 449
Joined: Sun Apr 26, 2020 8:10 pm
Location: Denmark
Contact:

Re: tdata (basic) BUTTERFLY no color in the next x16.

Post by JimmyDansbo »

For color attributes, you need to use TATTR

I made an example here:
viewtopic.php?p=32274#p32274
Visit my Github repo
or my personal site with CX16/C64/6502 related information.
Feel free to contact me regarding any of my projects or even about meeting up somewhere near Denmark
funkheld
Posts: 260
Joined: Mon Feb 26, 2024 11:11 am

Re: tdata (basic) BUTTERFLY no color in the next x16.

Post by funkheld »

hello, thanks.
this is ok.

Code: Select all

XO = 37 : YO = 27

FOR X = 0 TO 6
  FOR Y = 0 TO 6
   TD = TDATA(X, Y)
   TA = TATTR(X, Y)
   TILE XO+X, YO+Y, TD, TA
  NEXT
NEXT
Attachments
es geht.jpg
es geht.jpg (40.08 KiB) Viewed 464 times
Post Reply