标题:[求助]现金悬赏 把bascom语言转为c
只看楼主
naliyouai
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2010-11-15
结帖率:100%
 问题点数:0 回复次数:1 
[求助]现金悬赏 把bascom语言转为c
高价悬赏 高手把bascom转为c....
http://www.avrprojects.info/avr-projects/digital-dimmer-using-atmega8/   这个是网站
以下是bascom语言  我用了bascom avr 可能软件没用  希望能转换以下 用avr studio完成编译  如果成功,悬赏美金:$50.00

$regfile = "m8def.dat"
$crystal = 4000000

Config Pinb.1 = Output                                      ' Gate Triac
Config Pind.7 = Input                                       ' Key Up
Config Pinb.0 = Input                                       ' Key Dn

Config Int0 = Rising
On Int0 Int0_int                                            ' Initialise the INT0 Interrupt


Enable Interrupts
Enable Int0


Dim E As Eram Byte
Dim B As Byte
Dim D As Byte

If E > 9 Then E = 9
B = E
D = 0
Set Portb.1

Do

If Pind.7 = 0 Then
If B > 0 Then Decr B
Waitms 10
E = B
End If

If Pinb.0 = 0 Then
If B < 9 Then Incr B
Waitms 10
E = B
End If



Loop

End                                                         ' end program

Int0_int:

Set Portb.1
For D = 0 To B
Waitus 200
Next D
Reset Portb.1

Return
搜索更多相关主题的帖子: studio 现金 crystal 
2011-07-09 02:10
SmileHong
Rank: 1
来 自:陕西榆林
等 级:新手上路
帖 子:12
专家分:6
注 册:2012-10-21
得分:0 
我也是同样的问题,转换成c 就问题一大堆了

努力开发好的软件。
2012-11-15 21:42



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-345072-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.847089 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved