Exemplo n.º 1
0
	void DEF_FUN_N(Machine & machine){
		machine.globals.push(machine.currentAddress());
		machine.skip(size);
	}
Exemplo n.º 2
0
	/**
	 * The address of the next instruction is pushed on the globals list
	 * and execution continues after the function definition.
	 * 
	 * \param Inti16 The number of (following) bytes that define the function.
	 * 
	 * \deprecated_mitproto{DEF_FUN}
	 */
	void DEF_FUN16(Machine & machine){
		Size size = machine.nextInt16();
		machine.globals.push(machine.currentAddress());
		machine.skip(size);
	}