Skip to content

Instantly share code, notes, and snippets.

View miguel-tubac's full-sized avatar

Miguel Tubac miguel-tubac

View GitHub Profile
//Aca estan las instrucciones estandares de ARM64
public class StandardLibrary
{
private readonly HashSet<string> UsedFunctions = new HashSet<string>();
public void Use(string function)
{
UsedFunctions.Add(function);
}