az65 0.1.11

A multi-CPU assembler
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# `@undef`

Use `@undef` to "undefine" a label or constant.

## Examples

```
@defn TEST, 42

@echo TEST ; Prints "42"

@undef TEST

@echo TEST ; Will error due to expression not being solvable
```