pouët.net

search in pouët.net

I'm looking for and this is a [ | | | | ]
topic post date posted by
Random line of code thread 2025-07-07 22:29:56 Blueberry Blueberry
...[quote]Thanks for seeing it and saying it, Blueberry. ✨[/quote] Sentiment analysis gone haywire mu...
Random line of code thread 2025-07-06 14:47:46 leaq leaq
...[code] pushw 10h popw ds and bl, 0FEh mov cr0, ebx jmp 00h:unreal[/code]...
Random line of code thread 2025-07-06 09:33:24 kapsel kapsel
...[code]?CHR$(147):FORA=0TO255:POKE1224+A,PEEK(0+A):NEXT[/code] The code on Commodore 64 clears the sc...
Random line of code thread 2025-07-06 09:14:28 kapsel kapsel
...The function provided by ^ML!^ calculates e^a in an approximate way. Compared to the classical appro...
Random line of code thread 2025-07-06 09:04:39 4gentE 4gentE
...?CHR$(147):FORA=0TO255:POKE1224+A,PEEK(0+A):NEXT...
Random line of code thread 2025-07-06 08:39:59 mudlord mudlord
...[code] float musys_exp(float a) { union { float f; int i; } u, v; u.i = (int)(6051102 * a + 10564781...
Random line of code thread 2025-07-05 20:05:26 Blueberry Blueberry
...[code]effective_cutoff = cutoff * exp2((bittest(velocity, 0.5) ? accent_p : 1) * amp)[/code]...
Random line of code thread 2025-07-05 19:45:06 ham ham
...Back to the topic. [code] ; Scroll text starts here dc.b "Bla bla bla. Bla bla bla. And more bla bla...
Random line of code thread 2025-07-05 19:30:40 kapsel kapsel
...[quote]Krill: The botsplaining posts in the random line of code thread are a tad grating, though.[/q...
Random line of code thread 2025-07-05 09:35:26 Blueberry Blueberry
...[quote]1 bus cycle = 2 CPU clock cycles[/quote] Amidst all the noise, humbly conceiled within parent...
Random line of code thread 2025-07-05 08:52:07 kapsel kapsel
...[code]union { float d; int x; }[/code] It's a way of treating the same bits of a floating-point numb...
Random line of code thread 2025-07-04 20:12:46 mudlord mudlord
...[code] float musys_powf(float a, float b) { union { float d; int x; } u = { a }; u.x = (int)(b * (u....
Random line of code thread 2025-07-04 20:01:26 kapsel kapsel
...[code]move.w #$4000,$dff09c[/code] Since we're already talking about interrupts via INTREQ (Interrup...
Random line of code thread 2025-07-04 19:29:06 ROG_VF ROG_VF
...Yeah, this makes sense. Crib: Two CPUs sitting on the bus, one to the other: "move.w #$4000,$dff09c"...
Random line of code thread 2025-07-04 14:47:56 kapsel kapsel
...Dear ROG_VF 🧠 What does MOVEM do? The MOVEM.L , instruction (e.g., writing to a color register) w...
Random line of code thread 2025-07-04 14:26:26 ROG_VF ROG_VF
...could need some help... [quote]the CPU MOVEM instruction performs consecutive writes and thus can up...
Random line of code thread 2025-07-04 12:49:51 kapsel kapsel
...[code]btst.b #10-8,$dff016 ; RMB[/code] Ah yes, good old Big Endian — making $dff016 feel like a t...
Random line of code thread 2025-07-04 12:33:10 Blueberry Blueberry
...[code]btst.b #10-8,$dff016 ; RMB[/code]...
Random line of code thread 2025-07-04 05:49:23 datsua datsua
...[code]POKE 65497,0[/code]...
Random line of code thread 2025-07-03 19:56:26 leaq leaq
...[code]m_vdp_setramaddr macro addr, cmd move.l #(((addr)&$3FFF)14)|(cmd), (a6) endm m_vdp_compramaddr...
Random line of code thread 2025-07-03 18:17:38 kapsel kapsel
...[quote]I only recently understood the cause of the "fringes" that appear on the columns in the left ...
Random line of code thread 2025-07-03 10:39:53 kapsel kapsel
...Hey Blueberry — just a quick follow-up: You were absolutely right — the source is included in th...
Random line of code thread 2025-07-03 10:27:53 Blueberry Blueberry
...[code]hunklist[0].second.push_back(0);[/code]...
Random line of code thread 2025-07-03 09:33:21 britelite britelite
...[code]move.b #%11000000,$1c(a2) ; blitter control, start blitter[/code]...
Random line of code thread 2025-07-03 09:25:55 mudlord mudlord
...[code]auto cpos = shaderimage_editor.GetCursorPosition(); ImGui::Text("%6d/%-6d %6d lines | %s | %s"...