コード例 #1
0
ファイル: lstore.go プロジェクト: wonghoifung/tips
func _lstore(frame *rtda.Frame, index uint) {
	val := frame.OperandStack().PopLong()
	frame.LocalVars().SetLong(index, val)
}
コード例 #2
0
ファイル: iload.go プロジェクト: wonghoifung/tips
func _iload(frame *rtda.Frame, index uint) {
	val := frame.LocalVars().GetInt(index)
	frame.OperandStack().PushInt(val)
}