Nazalassa Posted April 11, 2023 Share Posted April 11, 2023 When the teacher says: Quote Plot n(g) as a function of n(a), using the tool of your choice. so you write this: Spoiler scr = $4000 ; Position of screen data ; Look at address $4000 to $4FFF to see the screen ; It's a 64x64 bit array (pixels either on or off) datX = $FF80 datY = $FF90 datLen = 10 ; 10 data couples to read px_x = $0204 px_y = $0205 px_idx = $0206 .org $8000 lda #0 ldx #0 clear_loop: sta scr, x ; engage screen cleaning inx beq clear_ex jmp clear_loop clear_ex: ldx #datLen main_loop: dex beq nop ; we printed everything lda datX, x rol ; Divide x coord by 2 to fit scr sta px_x lda datY, x sta px_y jsr pixel jmp main_loop nop: jmp nop init_ex: rts pixel: lda px_y rol rol rol tab lda px_x ror ror ror add sta px_idx lda px_x ldb #7 and tax lda #1 px_msk_loop: dex beq px_msk_ex rol jmp px_msk_loop px_msk_ex: tab lda scr, px_idx ; Get byte or ; Turn the corresponding bit on sta scr, px_idx ; Put byte back rts .org datX ; x coordinates .byte 10 .byte 20 .byte 30 .byte 40 .byte 50 .byte 60 .byte 70 .byte 80 .byte 90 .byte 100 .org datY ; y coordinates .byte 10 .byte 20 .byte 30 .byte 40 .byte 59 .byte 59 .byte 59 .byte 59 .byte 59 .byte 59 .org $FFFA ; Obligatory processor stuff .word $0000 .word $8000 .word $0000 (never let me choose anything if you want to preserve your sanity) Quote Link to comment Share on other sites More sharing options...
kerbiloid Posted April 11, 2023 Share Posted April 11, 2023 (edited) When you see that the previous poster used rol, ror, but no lol command. Edited April 11, 2023 by kerbiloid Quote Link to comment Share on other sites More sharing options...
Ben J. Kerman Posted April 11, 2023 Share Posted April 11, 2023 When you wonder why people say "L" and "W" when saying "w" takes longer than just saying the word "win", and online it only takes 2 extra keystrokes. Quote Link to comment Share on other sites More sharing options...
LHACK4142 Posted April 12, 2023 Share Posted April 12, 2023 When you mishear "great old one" as "Gradled one" in The Thing That Should Not Be Quote Link to comment Share on other sites More sharing options...
ColdJ Posted April 25, 2023 Share Posted April 25, 2023 If you can't find what you are looking for to buy, you just make it yourself. Quote Link to comment Share on other sites More sharing options...
kerbiloid Posted April 25, 2023 Share Posted April 25, 2023 Appendix. If you can't make it yourself, you can easily realize why do you actually not need it, based on the classic philosophy and psychology. Quote Link to comment Share on other sites More sharing options...
Ben J. Kerman Posted May 3, 2023 Share Posted May 3, 2023 On 4/4/2023 at 10:31 PM, LHACK4142 said: it's pretty nerdy to have that much knowledge in trucks lol I really only know a couple models of Kenworth trucks and that they start with "T-", I only assumed the T-800 was a think since I knew there was a T-880. European trucks on the other hand...let's just say ETS2 helped me out a bit with that. I mean, technically you could say that ETS2 first really got me interested in geography. When you hear the story about Sarah Rodo and think she's not crazy at all. Quote Link to comment Share on other sites More sharing options...
HyperDraco Posted May 17, 2023 Share Posted May 17, 2023 When you finally understand nuclear disaster reports and complex technical stuff and documents about nuclear science. Quote Link to comment Share on other sites More sharing options...
kerbiloid Posted May 17, 2023 Share Posted May 17, 2023 When you read this thread and see nothing new for you. Quote Link to comment Share on other sites More sharing options...
kerbiloid Posted June 2, 2023 Share Posted June 2, 2023 When you are still thinking without AI neuroimplant assistance, like a primitive monkey. Quote Link to comment Share on other sites More sharing options...
ColdJ Posted June 4, 2023 Share Posted June 4, 2023 When you wonder how C3-PO calculated the odds. Quote Link to comment Share on other sites More sharing options...
kerbiloid Posted June 4, 2023 Share Posted June 4, 2023 When you wonder how a vacuum cleaner is piloting a space fighter. Quote Link to comment Share on other sites More sharing options...
kspbutitscursed Posted June 4, 2023 Share Posted June 4, 2023 wen you start wondering how the startup sequence of the RS-25 afftects the perfomance of the engine Quote Link to comment Share on other sites More sharing options...
kerbiloid Posted June 5, 2023 Share Posted June 5, 2023 When you are an AI, cosplaying human. Quote Link to comment Share on other sites More sharing options...
kspbutitscursed Posted June 6, 2023 Share Posted June 6, 2023 wen you wonder wen orbit Quote Link to comment Share on other sites More sharing options...
ColdJ Posted June 23, 2023 Share Posted June 23, 2023 When you wonder if the letter H went to where the Bees went. Quote Link to comment Share on other sites More sharing options...
Ben J. Kerman Posted June 25, 2023 Share Posted June 25, 2023 When you hear DDR and the first thing you think of is the country and not the game. Quote Link to comment Share on other sites More sharing options...
OrdinaryKerman Posted June 25, 2023 Share Posted June 25, 2023 21 minutes ago, Ben J. Kerman said: When you hear DDR and the first thing you think of is the country and not the game. Wait what game is DDR… oh. Quote Link to comment Share on other sites More sharing options...
kerbiloid Posted June 25, 2023 Share Posted June 25, 2023 2 hours ago, OrdinaryKerman said: Wait what game is DDR… oh. Tetris with RAM modules. 2 hours ago, Ben J. Kerman said: When you hear DDR and the first thing you think of is the country and not the game. When I hear DDR in context of memory, it still sounds funny for me that they named the RAM type after the name of DDR state. Quote Link to comment Share on other sites More sharing options...
LHACK4142 Posted July 17, 2023 Share Posted July 17, 2023 When you write an n-body simulation... then dream about it Quote Link to comment Share on other sites More sharing options...
Aerodynamic Kerbal Posted July 17, 2023 Share Posted July 17, 2023 (edited) When you're making up random simple equations in your mind when you're bored (and you solve them) Edited July 17, 2023 by Aerodynamic Kerbal Quote Link to comment Share on other sites More sharing options...
AlamoVampire Posted July 17, 2023 Share Posted July 17, 2023 When you create floors in another forum game about handbooks 085007172023 Quote Link to comment Share on other sites More sharing options...
kerbiloid Posted July 17, 2023 Share Posted July 17, 2023 When you know what's the "book". Quote Link to comment Share on other sites More sharing options...
AlamoVampire Posted July 31, 2023 Share Posted July 31, 2023 (edited) When you have a hand signed copy of Starry Messenger by Neil deGrasse Tyson 210207302023 Edited July 31, 2023 by AlamoVampire Quote Link to comment Share on other sites More sharing options...
kerbiloid Posted July 31, 2023 Share Posted July 31, 2023 When you finished cutting tin sheets. Quote Link to comment 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.