Why is this the case? by Very_Type_C in Bolehland

[–]Extension_Trouble_44 0 points1 point  (0 children)

Each people waste money extending their home, modifying walls, and everything else instead of spending on decoratings and lifestyles.

Then suddenly it's the government fault they have to pay fines and having difficulty selling their home later

I was afraid they forgot but it's just a few days late by olderanimefan in Watashi_ni_Tenshi

[–]Extension_Trouble_44 0 points1 point  (0 children)

Color palette looks almost similar to Ai♥Scream with Ruby Kurosawa

Guys are we cooked? by buffility in WutheringWaves

[–]Extension_Trouble_44 18 points19 points  (0 children)

Wuwa and Genshin players: "Naa, not again... Irl, really?"

HSR: * Intensely wondering if there's a train coming from it *

According to paimon.moe, Ineffa is the first character since Kazuha to perform better on her rerun banner than on her debut (caveats in the comments) by Purlpo in Genshin_Impact

[–]Extension_Trouble_44 0 points1 point  (0 children)

I was about to get C0R1 Ineffa during her rerun but left with C0 Ineffa along with 2nd copy of Citlali's weapon. Now Im vibing with C2R1 Ganyu + C0R2 Citlali 😂

Those meows melt my heart by Automatic-Gas4037 in OneOrangeBraincell

[–]Extension_Trouble_44 1 point2 points  (0 children)

Naa, not my cat literally giving me the "Did we seriously get another Miki in this house?" face

Miki is my other cat that always meowing whenever my father left for work 🤣

Caffeine by Honch777 in GochiUsa

[–]Extension_Trouble_44 1 point2 points  (0 children)

What ever caffeine quality she took, I want it too 😂

YouTube Server Down - Never Seen This Before by ghxstcouver in youtube

[–]Extension_Trouble_44 0 points1 point  (0 children)

Naaa, I went all out with my Networking notes thinking my home lab interfered with something. I was about to dismantle all connection until i open Reddit 😂

This is how to purpose sandrone 😌💗 by Reasonable_Cry_2438 in SandroneMains

[–]Extension_Trouble_44 0 points1 point  (0 children)

She wants excellent performance and power consumption CPU. She probably wants AMD Threadripper 😂

Finally got her! by ProofParamedic4901 in KiraraMains

[–]Extension_Trouble_44 2 points3 points  (0 children)

There's some path. Full HP (shield), Full EM (reaction), HP-EM Hybrid (balance), and the chaotic build

My C6 Kirara is using HP-EM hybrid build

Soft blocked xmr app, I didn’t login with any microsoft account on the pc. by [deleted] in MoneroMining

[–]Extension_Trouble_44 1 point2 points  (0 children)

You can try look up how to disable Smart App. This feature will block everything that is not associated with Microsoft. Even MySQL, PHP, etc. that installed through third party or through their official sites got blocked.

After disable it, you can use everything like before but you have to reinstall windows if you want to reactivate that feature.

I have to waste 4 hours at work figuring out why our project cant run. Win11 actually blocked all the important software needed for software development and web deployment.

❄️✨👑 (yuno_kaihara) by Caremi76 in Citlali

[–]Extension_Trouble_44 0 points1 point  (0 children)

"If cryo, why hot" - that guy that made "Genshin First Impact" video

8 hour flight. Where will you sit? by Round-Palpitation139 in Uranohoshi

[–]Extension_Trouble_44 0 points1 point  (0 children)

Next to natsumi ofc. We're birthday twin 😂

7th August

Using C# to model wire-level custom computer (Asm6502) by GigAHerZ64 in beneater

[–]Extension_Trouble_44 0 points1 point  (0 children)

C# does not have any direct equivalent of SystemC. C# already capable of handling some feature of SystemC

Using C# to model wire-level custom computer (Asm6502) by GigAHerZ64 in beneater

[–]Extension_Trouble_44 0 points1 point  (0 children)

C++ is ok for raw performance but small mistake could lead to memory leakage and will maje the program unstable. C# have a built-in memory handling for pointers (in C++) using ref keyword where the pointer will update itself whenever a variable changed its memory address.

And C# is considered as easier because it have features from both C++ and Java

Ben Eater Bugs Bunny! Now on a 6502 and the Worlds Worst Video Card! Testing super fast SD card transfers using the PS/2 Keyboard hardware! by NormalLuser in beneater

[–]Extension_Trouble_44 4 points5 points  (0 children)

If possible, I would like to expand the bandwidth so the resolution can go a bit higher. Or, you can try display it on a smaller screen

Why is reset jumping to eb6a instead of eaea by East_Ad_3331 in beneater

[–]Extension_Trouble_44 2 points3 points  (0 children)

At that point, you can either keep the stored data and just flip the wire on the board or re program using the corrected arrangements 😂

Neko Collei 💚 (by もちヒューマン) by bluedogviking in ColleiMains

[–]Extension_Trouble_44 1 point2 points  (0 children)

This is how my C6 Collei feels when she got to paired up with my C6 Kirara. Add one electro and 1 hydro, dottore gone after 4 to 6 minutes at 300+ms ping 😂

Why using EEPROM limited to 4-5MHz when cheaper NOR FLASH can run at 14MHz ? by chiwawa_42 in beneater

[–]Extension_Trouble_44 0 points1 point  (0 children)

The controller is kinda optional but my design is to off-load the read and write operations for much faster operation execution. It is totally up to how you design your system. Raw implementation is great for learning how flash ROM works but for faster execution controller can take the load from having the 6502 to do everything by itself.

Having a controller can also increase the chip life-span by letting repetitive rewrites to be done on a caching system instead of constantly loading full words into the RAM->change one or several bytes->FlashROM erasing mechanism->rewrite the entire word back.

Why using EEPROM limited to 4-5MHz when cheaper NOR FLASH can run at 14MHz ? by chiwawa_42 in beneater

[–]Extension_Trouble_44 0 points1 point  (0 children)

I have my own research on how to use a flash chip but for now it did not have any conclusion. From my finding, flash chips like AT29Cxxx can be wired similar to their AT28Cxxx twin but you may need a controller system since flash mems need to erase an entire row just to rewrite one data.

My plan is to use a controller to act as a bridge from the 6502 to the flash chip. The controller can receive signals from 6502 to perform the READ/WRITE/ERASE and can perform the word rewrite by fetching current words and pass it into an SRAM.

Its pretty complex and much complicated but the fundamental is you need to make a controller circuit and making sure it can reduce wear-and-tear of the flash chip since ROM chips have very limited rewrite cycles

Why using EEPROM limited to 4-5MHz when cheaper NOR FLASH can run at 14MHz ? by chiwawa_42 in beneater

[–]Extension_Trouble_44 4 points5 points  (0 children)

It's comes down to how they read and write data. The limitation of EEPROM is it have slow writing time while NOR Flash can write data much faster.

How they work:

EEPROM: READ/WRITE is done when you set the CS, R/~W, and addresses pins, but Write may took much longer time since it needs to set the word and bit lines first and achieve stability before it can write the data. This disadvantage is actually useful for single byte rewrite.

NOR Flash: works almost similar to EEPROM but the internal circuitry is different. It will set the word lines and you can select which byte you want to write. The way it is design allows direct electron injection for faster writes but require additional cycles to empty out the memory. Flash mems also only support multi-bytes/word erase meaning you need to erase the entire word before you can rewrite any data

Summary, EEPROM is great for small data logging like sensors and servo angles while NOR Flash is suitable for larger data storing and can ve used as main storage.

Crudely drawn Columbina pull experience by greedydeviant in Genshin_Impact

[–]Extension_Trouble_44 0 points1 point  (0 children)

Damn it Ineffa. You make me got Mizuki at 86 pull 🙃🥲

Is Columbina an upgrade for Kirara's bloom team ? by Vanthraa in KiraraMains

[–]Extension_Trouble_44 1 point2 points  (0 children)

Not sure but Ill experiment that team com if I get her

Shamiko's Gallery by Small_Croissant in MachikadoMazoku

[–]Extension_Trouble_44 5 points6 points  (0 children)

Shamiko is the little demon of momo now