meow.git
label.h
/* meow - 6502 assembler
* Copyright (C) 2024-2025 ArcNyxx
* see LICENCE file for licensing information */
#ifndef LABEL_H
#define LABEL_H
#include <stdint.h>
#include "meow.h"
void labeldef(const char *name, const uint16_t val);
void labeladd(const char *name, const uint16_t ind, asiz_t type);
void labelchk(void);
#endif /* LABEL_H */