보호되어 있는 글입니다.
전체 글
* 깃허브: https://github.com/Ellie010707global main extern printf section .data global main extern printf section .data message db "Hello World", 10, 0 ; \n\0 section .text main: push dword message mov eax, [esp] mov ecx, 11 jmp unicorn unicorn: xor [eax+ecx-1], byte 0x33 dec ecx ;ecx = 0 -> ZF = 1 jne unicorn push dword message call printf
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class Timer : MonoBehaviour { public Text time; public float i_sec; public int i_min; private void Awake() { i_sec = 0; i_min = 0; } private void Update() { i_sec += Time.deltaTime; if(i_sec>=60) { i_min++; i_sec = 0; } time.text = string.Format("{0:D2} : {1:D2}", i_min, (int)i_sec); } }
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; using UnityEngine.EventSystems; public class Joystick : MonoBehaviour, IDragHandler, IPointerUpHandler, IPointerDownHandler { public Image joystick_Back, joystick_Bt; public static Vector3 dir_Vec3; public virtual void OnDrag(PointerEventData p) { Vector2 pos; if(RectTransformUtility.ScreenPointT..