Implemented function calls
This commit is contained in:
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
|
||||
}
|
Reference in New Issue
Block a user