Fixed initial kernel stack being wrong size.

This commit is contained in:
Jonas 'Sortie' Termansen 2012-03-17 20:17:12 +01:00
parent 969c0e8048
commit c7c0fc603a
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@
using namespace Maxsi;
// Keep the stack size aligned with $CPU/base.s
extern "C" { size_t stack[64*1024] = {0}; }
extern "C" { size_t stack[64*1024 / sizeof(size_t)] = {0}; }
namespace Sortix {