1
1
Fork 0

Separating itoa and ltoa to own file

This commit is contained in:
Lauren Toivanen 2023-06-15 06:40:38 +03:00
parent dd78c1cc7d
commit 76c9075f71
Signed by: jt
GPG key ID: 9151B109B73ECAD5
4 changed files with 67 additions and 33 deletions

View file

@ -1,6 +1,7 @@
#include "multiboot.h"
#include "vga.h"
#include "serial.h"
#include "xtoa.h"
static inline void outb(unsigned short port, unsigned char val) {
asm volatile ("outb %0, %1" : : "a"(val), "Nd"(port) : "memory");
@ -11,32 +12,6 @@ static inline unsigned char inb(unsigned short port) {
return ret;
}
char* itoa(int value, int base) {
char* result;
// check that the base if valid
if (base < 2 || base > 36) { *result = '\0'; return result; }
char* ptr = result, *ptr1 = result, tmp_char;
int tmp_value;
do {
tmp_value = value;
value /= base;
*ptr++ = "zyxwvutsrqponmlkjihgfedcba9876543210123456789abcdefghijklmnopqrstuvwxyz" [35 + (tmp_value - value * base)];
} while ( value );
// Apply negative sign
if (tmp_value < 0) *ptr++ = '-';
*ptr-- = '\0';
while(ptr1 < ptr) {
tmp_char = *ptr;
*ptr--= *ptr1;
*ptr1++ = tmp_char;
}
return result;
}
void kmain (unsigned int mbootmagick, multiboot_info_t* mbootinfo) {
// Cursor disabling
@ -83,11 +58,11 @@ void kmain (unsigned int mbootmagick, multiboot_info_t* mbootinfo) {
if (mbootinfo->flags & MULTIBOOT_INFO_FRAMEBUFFER_INFO) {
vga_write("\nFramebuffer: ");
vga_write("address: 0x");
vga_write(itoa(mbootinfo->framebuffer_addr, 16));
vga_write(ltoa(mbootinfo->framebuffer_addr, 16));
serial_write_string("\nFramebuffer: ");
serial_write_string("address: 0x");
serial_write_string(itoa(mbootinfo->framebuffer_addr, 16));
unsigned long *vmem = &mbootinfo->framebuffer_addr;
serial_write_string(ltoa(mbootinfo->framebuffer_addr, 16));
unsigned long *vmem = mbootinfo->framebuffer_addr;
*vmem = 0xff00ff;
} else {