https://github.com/zq1997/asmfileloader
read mode file loader in assembly language, for ext2 and FAT32
https://github.com/zq1997/asmfileloader
Last synced: 8 months ago
JSON representation
read mode file loader in assembly language, for ext2 and FAT32
- Host: GitHub
- URL: https://github.com/zq1997/asmfileloader
- Owner: zq1997
- Created: 2017-05-24T15:46:03.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-24T16:21:20.000Z (about 9 years ago)
- Last Synced: 2025-06-20T17:44:06.521Z (about 1 year ago)
- Language: Assembly
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AsmFileLoader
for x86 real mode, in assembly language, load a file in given path to memory, applicable to ext2 and FAT32
## ext2_gas.S
for ext2 and to be compiled by gas (at&t style)
`gcc -nostdlib -Wl,-Ttext=0x500 -Wl,--oformat=binary -o ext2_gas.bin ext2_gas.S`
## ext2_nasm.asm
same as ext2_gas.S but in intel style, to be compiled by nasm
`nasm -o ext2_nasm.bin ext2_nasm.asm`
## FAT32_nasm.asm
for FAT32 and to be compiled by nasm
`nasm -o FAT32_nasm.bin FAT32_nasm.asm`