+hloberg Posted May 17, 2022 Share Posted May 17, 2022 (edited) I looked through Atariage and haven't found any language files for 7800 BASIC so I created one. If someone has already created one sorry, I just missed it. If you have never added a language file to Notepad++ use Language>user defined>define your language>import. It's set for .b78 files to pull in the language file. I am working on adding the compiler and emulator to Notepad++ but not all that familiar do if anyone has some suggestions... anyhow, I'll slog through till I figure it out. 7800basicv3.xml and for you don't know what a language file is it tailors Notepad++ to the specific programming language or dialect highlighting different kinds of commands in different color and generally making the file easier to create and read. Edited May 21, 2022 by hloberg 4 Quote Link to comment Share on other sites More sharing options...
+hloberg Posted May 17, 2022 Author Share Posted May 17, 2022 2 Quote Link to comment Share on other sites More sharing options...
+hloberg Posted May 31, 2022 Author Share Posted May 31, 2022 (edited) here is a little batch file (attached) that simplifies using Notepad++ and compiling and using an emulator. startup.zip here is the code: C : cd "\Program Files (x86)\Notepad++" start /i notepad++ C : cd "C:\Users\hlo\OneDrive\Projects7800" cmd --------------- Notes: cd "\Program Files (x86)\Notepad++" start /i notepad++ (this part starts notepad++) cd "C:\Users\hlo\OneDrive\Projects7800" cmd (this part sets the location of where your project files are. In my case in my OneDrive. Then it opens a command window to that location. IMPORTANT! Alter this line to the YOUR location of your 7800 project files. ) This assumes you have ran INSTALL_WIN.BAT to set the path for 7800basic and set the PATH for whatever emulator you use. Now you can edit the file in NOTEPAD++ then alt+tab to the command window and type 7800BAS yourfile.b78 to compile. to run the compiled program in your emulator (my case PROSYSTEM) in the same command window type PROSYSTEM yourfile.b78.a78. later compiles and runs you just need to do the up arrow in the command window and choose a previous interaction. Edited May 31, 2022 by hloberg 1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.