X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=client%2Fspec.c;h=52ed512801c849296905bac07480a7cb462897a9;hb=HEAD;hp=825e89479aef571a205d8ae82b845df92b3274bc;hpb=be3f747f775c05facb8a34cf0baba523401b88fb;p=mTask.git diff --git a/client/spec.c b/client/spec.c index 825e894..52ed512 100644 --- a/client/spec.c +++ b/client/spec.c @@ -1,14 +1,15 @@ -//TODO #include "spec.h" #include "interface.h" +#include "mem.h" void spec_send(void) { - debug("Writing spec"); write_byte('c'); - write_byte(0 | (HAVELED << 0) | (HAVEAIO << 1) | (HAVEDIO << 2)); - write16(MAXTASKS); - write16(MAXSDSS); + write_byte(0 | (HAVELED << 0) );//| (HAVEAIO << 1) | (HAVEDIO << 2)); + write16(MEMSIZE); + write16(STACKSIZE); + write_byte(APINS); + write_byte(DPINS); + write_byte('\n'); write_byte('\n'); - debug("Done writing spec"); }