dabone Posted December 25, 2023 Share Posted December 25, 2023 I'm trying the get a good profile for my rgb2hdmi, and I'm looking for a program that can give me color bars of all the colors on screen at once. Preferably with color labels. Any example programs out there? Cart based diags? Thanks. Quote Link to comment https://forums.atariage.com/topic/358683-looking-for-a-monitor-test-program-that-shows-all-colors-on-screen/ Share on other sites More sharing options...
pixelpedant Posted December 25, 2023 Share Posted December 25, 2023 (edited) This will work from TI BASIC (and include both "transparent" and "black" as discrete colours, merely for the sake of custom): 10 CALL SCREEN(1) 20 FOR X=1 TO 16 30 CALL COLOR(X,X,X) 40 CALL VCHAR(1,X*2-1,24+8*X,48) 50 NEXT X 60 CALL KEY(0,K,Z) 70 IF Z=0 THEN 60 Waits for (any) input after display. Edited December 25, 2023 by pixelpedant 5 Quote Link to comment https://forums.atariage.com/topic/358683-looking-for-a-monitor-test-program-that-shows-all-colors-on-screen/#findComment-5373617 Share on other sites More sharing options...
dabone Posted December 25, 2023 Author Share Posted December 25, 2023 Perfect!!!! 1 Quote Link to comment https://forums.atariage.com/topic/358683-looking-for-a-monitor-test-program-that-shows-all-colors-on-screen/#findComment-5373790 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.