#import "CPU.h" @implementation CPU - (void)freeze { NSLog(@"Freeze cpu"); } - (void)jump:(long)position { NSLog(@"Jump to %ld position",position); } - (void)excute { NSLog(@"Excute cpu"); } @end