s502 assembler
A very simple assembler for the 6502 line of processors written in C
Data Structures
tokenslist.h File Reference

Implement TokensList. More...

#include "token_t.h"

Go to the source code of this file.

Data Structures

struct  TokensListElement
 An element of a TokensList. More...
 
class  TokensList
 A doubly-linked list for storing Tokens. More...
 

Detailed Description

Implement TokensList.

Doubly-linked list for tokens

Definition in file tokenslist.h.


Data Structure Documentation

◆ TokensListElement

struct TokensListElement

An element of a TokensList.

Definition at line 16 of file tokenslist.h.

Data Fields
struct TokensListElement * next next element in list or NULL
struct TokensListElement * prev prev element in list or NULL
Token * token Token value.