Got the string concat funcion working.

This commit is contained in:
2019-09-01 17:51:28 -05:00
parent 658a380f9a
commit 5b66184ea0
7 changed files with 87 additions and 45 deletions
+3 -3
View File
@@ -1,10 +1,10 @@
#ifndef BUILD_NUMBER
#define BUILD_NUMBER "276"
#define BUILD_NUMBER "349"
#endif
#ifndef VERSION_STR
#define VERSION_STR "0.0.2+276 - Sat 31 Aug 2019 05:43:54 PM CDT"
#define VERSION_STR "0.0.2+349 - Sun 01 Sep 2019 03:15:31 PM CDT"
#endif
#ifndef VERSION_STR_SHORT
#define VERSION_STR_SHORT
unsigned char* version_str_short = "0.0.2+276";
unsigned char* version_str_short = "0.0.2+349";
#endif
+2 -2
View File
@@ -8,7 +8,7 @@ typedef struct MemoryChunk
struct MemoryChunk* Prev;
struct MemoryChunk* Next;
size_t Size;
bool Allocated;
bool Allocated;
};
static struct MemoryChunk* First;
@@ -19,4 +19,4 @@ void* Malloc(size_t size);
void Free(void* ptr);
#endif
#endif
+2 -1
View File
@@ -6,6 +6,7 @@ typedef unsigned int size_t;
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
typedef unsigned long long uint64_t;
/* MAIN.C */
extern unsigned char *memcpy(unsigned char *dest, const unsigned char *src, int count);
extern unsigned char *memset(unsigned char *dest, unsigned char val, int count);
@@ -36,4 +37,4 @@ void timer_handler(struct regs *r);
void timer_install();
/* KB.C */
void kb_install();
#endif
#endif