vm: fix field order in zone struct

Slava Pestov 2010-05-04 17:57:53 -04:00
parent 9abdc4d16d
commit 295f62403e
1 changed files with 3 additions and 3 deletions

View File

@ -19,10 +19,10 @@ STRUCT: context
: context-field-offset ( field -- offset ) context offset-of ; inline
STRUCT: zone
{ start cell }
{ here cell }
{ size cell }
{ end cell } ;
{ start cell }
{ end cell }
{ size cell } ;
STRUCT: vm
{ ctx context* }