aboutsummaryrefslogtreecommitdiff
path: root/src/memory/memory.c
blob: 35247872a7aa32ca2e7e3b1ae47d84114fe3a473 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "../graphics/vga.h"

unsigned char *memory_copy(unsigned char *dest, const unsigned char *src, int count) {
    // TODO: Add memory copy function
}

unsigned char *memory_set(unsigned char *dest, unsigned char val, int count) {
    unsigned char *p = dest;
    while (count > 0) {
        if (!*p) break;
        *p = val;
        p++;
        count--;
    }
    return dest;
}