Rilasciata la nuova versione del CBM prg Studio v3.13.0
E’ stata rilasciata una nuova versione del programma CBM prg Studio. Ci sono un sacco di nuove funzionalità e fix in questa versione e sono sempre gradite le segnalazioni di bug o suggerimenti/commenti.
CBM prg Studio e’ un kit di sviluppo che gira in ambiente Windows e vi permette di programmare in Commodore Basic e Linguaggio Macchina(LM), il programma potrà poi essere compilato in un file eseguibile “.PRG” per Commodore 64 / VIC-20 o PET.
La suite è anche completa di un ottimo sprite editor che permette di definire fino a 128 pattern, nonché di un funzionale char editor, che permette di avere una gestione completa e sotto controllo della procedura per la ridefinizione del charset interno al C64 e al Vic20.
Infine il CBM prg Studio, offre una completo e facile controllo della complessa gestione della tastiera del C64 e Vic20 ed in particolare dei caratteri PETSCII che contraddistinguevano le macchine sotto il marchio Commodore e che rappresentavano una chiave fondamentale per la programmazione in ambiente Basic, alla stregua di un vero e proprio macro linguaggio.
CBM prg Studio sostituisce le ormai obsolete Tools: C64PrgGen e VIC20PrgGen.
This is mostly a bug-fix version, though there are some small new features.
Bugs Fixed:
- Assembler:
- Problems with spaces in expressions.
- Problems with spaces in ‘repeat’ parameters.
- Screen codes in byte/text directives not generated properly.
- Breakpoints were not sent to a debugger properly when building projects.
- Some zero page optimisation issues.
- BASIC:
- Renumber problems for programs with multiple ‘ON’ statements
- Problems with importing/generating PI and other characters.
- Some characters missing from import.
- Screen Code tool:
- CBM key would lock sometimes.
- General:
- Code snippets had to be re-generated.
- ‘Go to’ dialog crash with large files.
- ‘Go to’ dialog caused weird zooming issues.
- Issues with selected columns of text.
- Problems with compress/uncompress with some control codes.
See the help for a complete list of new features and fixed bugs.
Note In this version, each target machine can have its own default project directory. If you are upgrading from a previous version (before version 2.5.1) of CBM prg Studio you may be asked to set up your project directories again. Your current projects will not be affected.
Download: CBM prg Studio v3.13.0 (992)
source: ajordison.co.uk
Hallo, I have a System.IndexOutOfRangeException while renumbering the following code:
10n=5
20 dim ma$(n,n)
60 forx=1ton
70 fory=1ton
80 if y>x then ma$(x,y)=str$(int(rnd(1)*2)):goto90:rem sopra la diagonale
82 if Y=x then ma$(x,y)=str$(int(rnd(1)*9)):goto90:rem diagonale.sono i tipi di stanza 1-9
85 ma$(x,y)=ma$(y,x):rem sotto la diagonale
90 nexty
100 nextx
105 ?” “;
106 fort=1ton:?” “+str$(t);:next
107 ?
110 forx=1ton
120 ?”x=”+str$(x);
130 fory=1ton
140 ?” “+ma$(x,y);
150 nexty
160 ?
170 nextx
thank you