- 7 Posts
- 8 Comments
iliketurtiles@programming.devOPto
C Programming Language@programming.dev•How can I force the entry-point to be at start of .text?English
2·1 month agoOh I see, many thanks.
iliketurtiles@programming.devOPto
C Programming Language@programming.dev•How can I force the entry-point to be at start of .text?English
1·1 month agoI don’t know what a .map file is, will look into that. This does work, when I
objdumpit _start is at 0x0. But I’m curious if there is a better solution, I’d like to learn how it’s properly done.
iliketurtiles@programming.devto
Linux@programming.dev•Developer patches Wine to make Photoshop 2021 & 2025 run on Linux — Adobe Creative Cloud installers finally work thanks to HTML, JavaScript and XML fixesEnglish
11·1 month agoThere should be bounties to encourage getting specific software working on wine.
And maybe even projects for coordinating work to fix issues wine has with specific software. Something like a wine-adobe-cc community on GitHub where everyone interested can come together.
iliketurtiles@programming.devOPto
Ask Electronics@discuss.tchncs.de•Why does this diagram on CMOS switching show the ground voltage rising?English
3·3 months agoOh that makes sense, thanks :)
iliketurtiles@programming.devOPto
Ask Electronics@discuss.tchncs.de•Why does this diagram on CMOS switching show the ground voltage rising?English
8·3 months agoHeres a comment I read on youtube where again soneone points out the ground voltage rising/falling. Very confused why they say this.

iliketurtiles@programming.devto
Electronics@discuss.tchncs.de•How do I get started designing and making and/or acquiring my own pcb?English
2·6 months agoOther than what others have suggested:
- Do get an etch resist pen. The toner occasionally, even when it goes well, might not transfer on some spots of the copper plate. So you’ll need the etch resist marker to color in breaks in paths etc. and fix these little issues.
- The acid or whatever you use to etch away the copper might not work on some spots. Leading to shorts or otherwise unwanted connections. So do check with a multimeter the paths and pads that are close to make sure there arent shorts. You can scratch away unwanted copper with a blade.
I dont think theres much more to add, its quite a simple process. Have fun :)
iliketurtiles@programming.devto
Electronics@discuss.tchncs.de•How do I get started designing and making and/or acquiring my own pcb?English
5·6 months agoThe toner transfer method would be I think the most DIY method you can use. Make your pcbs entirely by yourself at home.
Naturally wont give you as professional a result: no silkscreen, limited to 2-layer pcbs (2 sides of a copper plate).
But it is a lot faster that having it manufactured (takes me like 1 hour for a pcb) and maybe this is debatable but it makes me feel like I have more room to make mistakes.
thanks for the reply. my goal is in fact to take what is at address 0xf0 and store it at 0x400. I know it resembles another beginner error but it’s not this time :)
the example code I’ve given looks pretty contrived but I’ll be using this to write startup code for a microcontroller, and the values starting at src are initial values in flash I need to copy over to dest which is SRAM.