# asm_to_c **Repository Path**: lpcssg/asm_to_c ## Basic Information - **Project Name**: asm_to_c - **Description**: 从asm跳转到c - **Primary Language**: C - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-11-18 - **Last Updated**: 2024-11-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ``` nasm -f elf64 startup.asm -o startup.o gcc -c main.c -o main.o gcc -nostartfiles -o program startup.o main.o -no-pie ./program ```