Search found 5 matches

by Isteward
Sun Mar 29, 2015 10:36 pm
Forum: Other topics
Topic: Smart. ASIC compiler
Replies: 2
Views: 1507

Re: Smart. ASIC compiler

Sorry I meant to say without the interpreter ( without the need to install basic interpreter)
by Isteward
Sun Mar 29, 2015 10:35 pm
Forum: Other topics
Topic: Smart. ASIC compiler
Replies: 2
Views: 1507

Smart. ASIC compiler

Is there's a smart basic compiler that will allow running of programs with the requirement for the interpreter ?
by Isteward
Mon Mar 16, 2015 3:01 pm
Forum: Other topics
Topic: How do I blank out a section of code in graphics mode
Replies: 1
Views: 1130

How do I blank out a section of code in graphics mode

I wish to clear a section of the screen in graphics mode and write over it. You can see from the code below what I am talking about. graphics graphics clear 1,1,1 draw color 0,0,0 draw text "first line" at 100,100 'blank it draw text " " at 100,100 ' or overwrite it' draw text "second line" at 100,100
by Isteward
Sun Mar 15, 2015 10:15 pm
Forum: Other topics
Topic: Compiler
Replies: 1
Views: 1190

Compiler

Is there a compiler available for smart basic?
by Isteward
Sun Mar 15, 2015 9:39 pm
Forum: Other topics
Topic: Blanking a section of screen in graphics mode
Replies: 2
Views: 1491

Blanking a section of screen in graphics mode

In Graphics mode I wish to have a lower section of the screen blanked so I can draw text on it. For example: graphics graphics clear 1,1,1 draw color 0,0,0 draw text "first line" at 100,100 Now 'blank it draw text " " at 100,100 ' or overwrite it' draw text "second line" at 100,100 If you run this y...