//
//  EXPIndexElement.m
//  dde
//
//  Created by Ashley on 25/07/2007.
//  Copyright 2007 __MyCompanyName__. All rights reserved.
//

#import "EXPIndexElement.h"
//#import "EXPAssemblerConstants.h"
#import "EXPVirtualMachine.h"

@implementation EXPIndexElement

- (NSString *)elementType
{
	return @"index";
}

/* - (BOOL) compile:(EXPVirtualMachine *)machine error:(EXPError *)err
{
	BOOL success = YES;

	[machine putOpcode:LDA mode:GLOBAL+INTEGER];
	[machine putUInt:[self address]];

	return success;
} */

@end