I'm trying to figure out how you draw to the Adafruit 1743 with a 6502 micro processor with assembly (with the vasm compiler). I've searched through the data sheets (found here: https://www.mouser.com/datasheet/2/737/adafruit_2_dot_8_color_tft_touchscreen_breakout_v2-1396576.pdf and here: https://cdn-shop.adafruit.com/datasheets/ILI9341.pdf) but I can't seem to figure it out. Although, I do NOT have the Adafruit 1743 yet. But I will test any answers to this question as soon as I receive it. But I am thinking ahead at least.
But I'm not even 100% sure if it will work with the 6502 even though it looks like it should, because all they show is pictures of it with an Arduino but I believe they used a third party controller which suggests to me that you could use a 6502 with it (and it does say it has an 8-bit mode (found here: https://www.mouser.com/ProductDetail/Adafruit/1743?qs=%252BEew9%252B0nqrDivuzDpdISFw==&mgh=1&gcl))
Anyways if you can help please do. Thanks in advance!
P.S. if you know how the touch screen works too that would be great but it's fine if you don't.
One way to make this work is by using a 6522 VIA and implementing SPI in software to talk to the display (reading/writing to it bit by bit). Here's an example of a homebrew 6502 system that implements peripheral access using SPI over a VIA: https://steckschwein.de/hardware/via-65c22-as-spi-master/.