Explore >> Select a destination


You are here

ketansingh.me
| | benhoyt.com
2.3 parsecs away

Travel
| | Mugo is a single-pass compiler for a tiny subset of the Go programming language -- just enough to compile itself.
| | abhinavsarkar.net
2.6 parsecs away

Travel
| | We write a few Brainfuck interpreters in Haskell.
| | g-w1.github.io
1.8 parsecs away

Travel
| | My Question Was Answered In the previous post I asked a question, and got an answer! My question was: "From what i've seen, linux executables are loaded into memory at 0x400000 (if someone knows why this is, please tell me!)"
| | gpfault.net
24.3 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 ...