ACTIVITY LOG

LostSideDead Year 2026

A running log of what I have been building, fixing, and thinking about across code, graphics, and life.

24 entries
Page 2 of 5
Wed Mar 11 08:49:04 AM PDT 2026
att2intel, GNU Assembler Syntax Conversion from AT&T to Intel

att2intel is a Python command-line tool that converts x86/x86-64 GNU assembly (.s) files from AT&T syntax to Intel syntax (GAS .intel_syntax noprefix style). It requires only Python 3.6+ with no external dependencies.

Conversions Performed

  • Register prefixes%rax, %eaxrax, eax
  • Immediate prefixes$42, $0xff42, 0xff
  • Operand ordermov %rax, %rbx (src, dst) → mov rbx, rax (dst, src)
  • Memory operandsdisp(%base, %index, scale)[base + index*scale + disp]
  • Size suffixesmovl, addq, cmpbmov DWORD PTR, add, cmp BYTE PTR
  • Sign-extend mnemonicscltq, cwtl, cbtwcdqe, cwde, cbw
  • Move sign/zero extendmovzbl, movswqmovzx BYTE PTR, movsx WORD PTR
  • Segment overrides%fs:0x28(%rbp)fs:[rbp + 0x28]
  • RIP-relative addressingsymbol(%rip)[rip + symbol]
  • Indirect calls/jumps*%rax, *(%rax)rax, [rax]
  • Lock/rep prefixes, labels, directives, and comments — preserved unchanged

Usage

python3 att2intel.py <source_directory> [output_directory]

It recursively finds all .s files in the source directory, converts each line, and writes the output with .intel_syntax noprefix prepended. If no output directory is specified, it defaults to code_intel_gas/.

Example project converted with this tool: MasterPiece.x64.Assembly

att2intel Proejct on GitHub

Sun Mar 8 01:39:35 AM PST 2026
ACMX2 - for macOS Tahoe (Beta)

New Beta Release of ACMX2 for macOS Tahoe

ACMX2 - macOS Tahoe (Beta)

Sun Mar 8 01:34:51 AM PST 2026
ACMX2 - Android App

New ACMX2 Android App. Designed for newer devices.

ACMX2 - Android App

Wed Mar 4 02:31:03 AM PST 2026
MXCMD Site Redesign and New Beta Release

New Redesign of MXCMD website as welll as a new beta release for Windows X64 and full source code to compile on other platforms.

MXCMD Guide

Mon Mar 2 02:58:52 PM PST 2026
C++ Examples Website

I took my years of C++ Examples/Notes I made from reading many books on C++ and used GenAI to turn it into a website to document each example, and place them all in a nice tree structure. They are sorted by the year of the standard, be C++11, C++17, or C++20/23.

You can view the page here: Jared's Modern C++ Examples