Implemented function calls
This commit is contained in:
parent
cd1fe5eebb
commit
6043baee48
11 changed files with 114 additions and 62 deletions
11
src/build/asm/Label.go
Normal file
11
src/build/asm/Label.go
Normal file
|
@ -0,0 +1,11 @@
|
|||
package asm
|
||||
|
||||
// Label represents a jump label.
|
||||
type Label struct {
|
||||
Name string
|
||||
}
|
||||
|
||||
// String returns a human readable version.
|
||||
func (data *Label) String() string {
|
||||
return data.Name
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue