mirror of
https://github.com/romychs/Ocean-240.2-Emulator.git
synced 2026-04-21 11:03:21 +03:00
18 lines
268 B
Go
18 lines
268 B
Go
package zrcp
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
const exp1 = "CS=0x0100 & SP>=256"
|
|
const memBpSet = "11ch 3 1"
|
|
|
|
func Test_SetMemPB(t *testing.T) {
|
|
//p := New
|
|
//resp := p.SetMemBreakpoint(memBpSet)
|
|
//if resp != "" {
|
|
// t.Errorf("SetMemBreakpoint() returned %s", resp)
|
|
//}
|
|
|
|
}
|