Add disassembler alternative format

This commit is contained in:
hiperiondev
2023-08-22 18:23:27 -03:00
parent 5721edc2d1
commit 6b8e95d250
8 changed files with 1110 additions and 244 deletions

View File

@@ -0,0 +1,24 @@
/*
* utils.h
*
* Created on: 10 ago. 2023
* Original Author: Emiliano Augusto Gonzalez (egonzalez . hiperion @ gmail . com)
*
* Further modified by Kayne Ruse, and added to the Toy Programming Language tool repository.
*/
#ifndef UTILS_H_
#define UTILS_H_
struct Node {
void *data;
struct Node *next;
};
extern struct Node *queue_front, *queue_rear;
void enqueue(void *x);
void dequeue(void);
void* front(void);
#endif /* UTILS_H_ */