summaryrefslogtreecommitdiff
path: root/qdma.go
blob: b28dfe980942f879fc0d8cb47e2f86879498b981 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package main

import (
	"os"
)

func main() {
	for _, arg := range os.Args[1:] {
		LabelFind(arg) // First pass to find all labels.
		Assemble(arg)  // Second pass to assemble the instructions.
	}
}