This website works better with JavaScript.
Explore
Help
Sign In
elal
/
eOS
mirror of
https://github.com/E-Almqvist/eOS
Watch
1
Star
0
Fork
You've already forked eOS
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
A poorly written OS for the x86 arch. (WIP)
c
nasm-assembly
operating-system
x86
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
305
Commits
9
Branches
4
Tags
9.8 MiB
Tag:
Branch:
Tree:
3b1e25b047
dev
interupts
malloc
master
memory
multiboot
paging
refactor
rust
0.1
0.2
0.4
0.5
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from '3b1e25b047'
${ noResults }
eOS
/
lib
/
conv.h
7 lines
101 B
Raw
Normal View
History
Unescape
Escape
Conversion stuff
3 years ago
#
include
"types.h"
Comp errors fixed -> more comp errors :(
3 years ago
#
include
"util.h"
Conversion stuff
3 years ago
Int to str
3 years ago
#
define ASCII_OFFSET 0x30
Minor refactor
3 years ago
char
*
int_to_str
(
int
i
,
char
*
buf
)
;