vm: fix field order in zone struct

db4
Slava Pestov 2010-05-04 17:57:53 -04:00
parent 24ad579631
commit f693e64798
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* }