mrlgs 发表于 2023-2-23 08:48:53

终于明白bide4.4是怎么在电脑上调试的了

需要将runOn=后面改成emulator
像下面这样
#Set to "emulator" to test on the emulator (requires the Manager PLUS emulator).
#Else, set to "none".
runOn=emulator

然后安装卡西欧的fx-Manager PLUS Subscription
bide 有个类似播放的按钮,就是调试了

点这个之前,要先打开fx-Manager PLUS Subscription

然后模拟器调到内存界面,下图

按F3 就可以了,出现选择文件对画框,选择要调试的程序

1和2好像没啥区别吧
然后程序就复制进去了,可以在模拟器里运行,看效果了





mrlgs 发表于 2023-2-23 08:49:48

之前一直没弄明白,也没有找到什么教程,都是法文网页,一个字也看不懂

mrlgs 发表于 2023-2-23 08:53:00

纯自己瞎猜,乱按的,希望对大家有帮助

bioafanda 发表于 2023-3-15 08:41:20

学习了。

123MP3 发表于 2025-11-3 15:07:41

你好,请问那个bide是怎么调试出来的呢,我还是没看明白

mrlgs 发表于 2026-5-26 13:25:20

123MP3 发表于 2025-11-3 15:07
你好,请问那个bide是怎么调试出来的呢,我还是没看明白

运行bide程序,会在C:\Users\用户名\BIDE下生成一个options.txt,内容如下
#BIDE Options
#Note that you must restart BIDE to take the changes in account.

#If you don't want unicode for some reason, set to false
allowUnicode=true

#If you don't want auto-completion, set to false
autocomplete=true

#Set to "true" for various optimizations. Warning: this removes comments, as they slow down the interpreter!
optimize=false

#Font of programs. Warning: only change if you have a font that supports ALL the glyphs! (or disable unicode)
#Default font: "DejaVu Avec Casio"
#Casio font: "Casio Graph"
progFontName=DejaVu Avec Casio

#It is advised to put a multiple of 7, else the pixels won't be of the same height
#For DejaVu Avec Casio, a minimum of 14 is required for all glyphs to display properly
progFontSize=14

#Default picture zoom size.
pictZoom=6

#Background color
bgColor=FFFFFF

#Text color
textColor=000000

#Selected line color
hlColor=EEEEEE

#Syntax coloration
keywordColor=0000FF
operatorColor=0080FF
variableColor=8000FF
strColor=808080
entityColor=FF8000
commentColor=008000
preprocessorColor=804000

#Whether to put spaces on operators when importing a g1m
#Note that unary operators don't have spaces, so "3*-5" -> "3 * -5"
#^
spacesFor^=true
#/
spacesFor/=true
#-
spacesFor-=true
#,
spacesFor,=true
#+
spacesFor+=true
#<=
spacesFor<\==true
#*
spacesFor*=true
#>
spacesFor>=true
#->
spacesFor->=true
#=
spacesFor\==true
#<
spacesFor<=true
#>=
spacesFor>\==true
#:
spacesFor\:=true
#!=
spacesFor\!\==true
#=>
spacesFor\=>=true

#Set to "emulator" to test on the emulator (requires the Manager PLUS emulator).
#Else, set to "none".
runOn=emulator

#If BIDE can't find the emulator screen, you may need to set the dimensions manually.
#To do that, take a screenshot of the emulator (Tools->Take emulator screenshot).
#Then, go in Paint and note the coordinates of the top left corner of the screen.
screenX=41
screenY=139

#If you set the emulator screen size to something other than 2, modify these dimensions
#Note that you must also replace the reference images in the .jar.
screenWidth=256
screenHeight=128

#Do not change this!
version=1.1


需要将runOn=后面改成emulator
重启程序,就好了
页: [1]
查看完整版本: 终于明白bide4.4是怎么在电脑上调试的了