Christopher Wilsontechshopper.hashnode.dev·Jul 3, 2024Processors for enthusiasts: comparing architectures and new technologiesIn the world of computing, processors stand as the heart of the machine, driving innovation and performance. For enthusiasts, the choice of processor goes beyond mere specifications; it's about exploring the architectures and new technologies that pu...processors
flysand7flysand7.hashnode.dev·Jan 2, 2024Writing x86 disassembler: start simpleBefore anything I'd like to point out that I used AI to rewrite paragraphs of the text. I'm somewhat bad with words, so getting AI assistance to make an article that's easier to read was nice. As part of a bigger project (a graphical Linux debugger),...164 readsGeneral Programming
Sienovo Embedsienovo.hashnode.dev·Dec 31, 2023Small Scale Computer Vision base on x86 |ARM +FPGA+NPU platformIntroduction Over the past decade, many projects involving computer vision (CV) have emerged, both in small scale proof-of-concept projects and bigger production applications. Typically: medical diagnosis help using radiography, biopsy and other medi...Computer Vision
Vaageesh Yavanawaageesh.hashnode.dev·Dec 1, 2023Brief Explanation of Kernel(x86 architecture)Memory Types When it comes to a system, we all know that there are 2 main memories RAM -> Random Access Memory. Volatile memory, which means we will lose on power reset. fast access for memory fetching & writing. Usually instructions are fetched from...Kernel
Elucian MoiseforProgramming Languagessagecode.hashnode.dev·Sep 14, 2023CPU Features & RegistryHere are some of the key processor features relevant for learning Assembly language: • Registers - Processors have a small number of registers that are used to store data and addresses. Registers provide the fastest way to access data since they are ...Assembly FundamentalsAssembly
Sundeep Kamathtrystwithcode.hashnode.dev·Oct 17, 2016Determine platform affinity 32-bit, 64-bit or Any CPU for a managed .NET PEIn my earlier post, I discussed how PEs in .Net can target different platforms and the subtle differences between them. In this post, I'll discuss how one can determine the platform (architecture) that a managed .Net PE targets. For this, we'll use a....NET