fixed linker and syscall

git-svn-id: svn://kolibrios.org@9053 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
pavelyakov
2021-07-12 12:28:41 +00:00
parent 716db38e51
commit 1979e6ff29
5 changed files with 99 additions and 174 deletions

View File

@@ -10,25 +10,20 @@ const (
)
func RedrawAll(bar_pos int){
btn_txt1:=" <- "
btn_txt2:=" -> "
str:="I love KolibriOS"
title:="Test Golang"
os.Redraw(1)
os.Window(500,250,420,200, title)
os.WriteText(32,32, 0x11000000 | colors.Green,str, 10)
os.Redraw(1)
os.Window(500,250,420,200, "Test Golang")
os.DrawLine(32, 80, 150, 80, colors.Green)
os.CreateButton(32, 128, 80, 30, Btn1, colors.Blue);
os.CreateButton(300, 128, 80, 30, Btn2, colors.Blue);
os.WriteText(32,128, 0x11000000 | colors.White,btn_txt1, 10)
os.WriteText(320,128, 0x11000000 | colors.White,btn_txt2, 10)
os.DrawBar(uint32(bar_pos), 90, 100, 30, colors.Red);
os.WriteText(32,128, 0x11000000 | colors.White," <- ")
os.WriteText(320,128, 0x11000000 | colors.White," -> ")
os.DrawBar(bar_pos, 90, 100, 30, colors.Red);
}
func Load() {
time := os.GetTime()
os.DebugOutStr("Time: ")
os.DebugOutHex(time)
//time := os.GetTime()
//os.DebugOutStr("Time: ")
//os.DebugOutHex(time)
var pos=32;
for true {
switch os.Event() {