mirror of
https://github.com/paleotronic/diskm8.git
synced 2024-11-04 19:05:12 +00:00
14 lines
209 B
Go
14 lines
209 B
Go
package main
|
|
|
|
type defaultNibbler struct{}
|
|
|
|
var defNibbler = &defaultNibbler{}
|
|
|
|
func (d *defaultNibbler) SetNibble(index int, value byte) {
|
|
|
|
}
|
|
|
|
func (d *defaultNibbler) GetNibble(index int) byte {
|
|
return 0
|
|
}
|