/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

disman.tl
| | gpfault.net
3.7 parsecs away

Travel
| | [AI summary] The provided text is a detailed explanation of how to write a simple 64-bit Windows application in assembly language that calls the ExitProcess function from the KERNEL32.DLL library. It covers the following key topics: 1. **Memory and Register Basics**: Explains how memory and registers work in 64-bit Windows, including the use of the stack pointer (RSP), registers like RCX, RDX, R8, and R9 for passing arguments, and the importance of stack alignment for performance. 2. **Calling Conventions**: Details the 64-bit Windows calling convention, including how the first four integer or pointer arguments are passed in registers (RCX, RDX, R8, R9), how additional arguments are passed on the stack, and the requirement for the stack to be aligned to ...
| | shellsharks.com
4.8 parsecs away

Travel
| | An introduction to x86 Intel assembly.
| | antonioparata.blogspot.com
3.4 parsecs away

Travel
| | I created this post as part of my jouring in getting more acquainted with the Intel architecture. Segmentation is a very important top...
| | dumblebots.com
33.3 parsecs away

Travel
| In this blog, I will be explaining how to get started with bare-metal Assembly Language programming on AVR microcontrollers, along with an example for the ATmega328P. We will see how a program is stored and executed by the Microcontroller's hardware; the syntax of the Assembly language, and also how to build and upload your program...