fix typo
parent
a385475394
commit
2f73851117
|
@ -13,7 +13,6 @@ kernel-internals sequences ;
|
||||||
|
|
||||||
: ds-reg ESI ; inline
|
: ds-reg ESI ; inline
|
||||||
: cs-reg EBX ; inline
|
: cs-reg EBX ; inline
|
||||||
: return-reg EAX ; inline
|
|
||||||
: remainder-reg EDX ; inline
|
: remainder-reg EDX ; inline
|
||||||
|
|
||||||
: vregs { EAX ECX EDX } ; inline
|
: vregs { EAX ECX EDX } ; inline
|
||||||
|
|
|
@ -4,7 +4,7 @@ void primitive_hashtable(void)
|
||||||
{
|
{
|
||||||
F_HASHTABLE* hash;
|
F_HASHTABLE* hash;
|
||||||
maybe_gc(0);
|
maybe_gc(0);
|
||||||
hash = allot_object(HASHTABLE_TYPE,sizeof(F_VECTOR));
|
hash = allot_object(HASHTABLE_TYPE,sizeof(F_HASHTABLE));
|
||||||
hash->count = F;
|
hash->count = F;
|
||||||
hash->deleted = F;
|
hash->deleted = F;
|
||||||
hash->array = F;
|
hash->array = F;
|
||||||
|
|
Loading…
Reference in New Issue