flat assembler
Message board for the users of flat assembler.
![]() Goto page Previous 1, 2, 3, 4, 5 Next |
Author |
|
MajorDill 26 Apr 2014, 18:04
when I click on download nothing is there. Just learning fasm and could really use these examples.
begging somebody to repost them thankyou |
|||
![]() |
|
MajorDill 28 Apr 2014, 14:01
got it - thanks
|
|||
![]() |
|
Picnic 31 Jul 2015, 06:16
I have uploaded a new version with minor improvements and bug fixes.
Hobby BASIC Version numbering changes from 0.0.4 to 0.4.0. Xs and Os game for the console (uses the mouse). ![]() Last edited by Picnic on 27 Apr 2022, 07:50; edited 87 times in total |
|||
![]() |
|
fasmnewbie 01 Aug 2015, 02:54
I love this stuff. Excellent materials for beginners to learn from (although there's nothing 'beginners' with the code)
|
|||
![]() |
|
fasmnewbie 01 Aug 2015, 03:10
I am linking to this thread.
|
|||
![]() |
|
Picnic 02 Aug 2015, 11:15
@fasmnewbie thank you.
I have uploaded a new version with minor improvements and bug fixes. Hobby BASIC handles ANSI encoding graphics with ease. Loading an ANSI encoded text file in the console is a very simple process. Code: rem APPLE1.BAS rem Display an ANSI encoded text file rem Hobby BASIC Interpreter path$ = PATH('ART\ANSI\APPLE.ANS') if SIZE(path$) = -1 then alert 0,'Not found',path$ : end view 11 screen 80,25,300 color 0,0 cls ansi path$ inkey cls end ![]() Last edited by Picnic on 05 Jan 2023, 11:24; edited 61 times in total |
|||
![]() |
|
Picnic 12 Aug 2015, 09:43
I have uploaded a new version with minor improvements and bug fixes.
Hobby BASIC comes with a set of specialized console commands. The commands BSAVE/BLOAD are used to copy a specific area of the console screen to a memory block and vice versa. Code: rem APPLE2.BAS rem Hobby BASIC Interpreter BLACK = 0 BLUE = 1 BRIGHT_BLUE = 9 A = 700 B = 701 path$ = PATH('ART\ANSI\APPLE.ANS') if SIZE(path$) = -1 then alert 0,'Not found',path$ : end view 11 screen 80,25,300 color 0,0 cls ansi path$ wait 750 repaint 0,0,80,25,BLUE,BLACK repaint 0,0,80,25,BRIGHT_BLUE,BLACK wait 750 bsave 0,0,40,25,A bsave 40,0,40,25,B bload 0,0,B bload 40,0,A inkey cls end ![]() Last edited by Picnic on 05 Jan 2023, 11:29; edited 58 times in total |
|||
![]() |
|
fasmnewbie 12 Aug 2015, 12:43
Picnic
It would be very nice if you could share your passion with Tomasz and others at Programming Language & Design section where you can properly introduce your Hobby Basic to the community. Good to see FASM is becoming a language of choice for compiler writing. |
|||
![]() |
|
Picnic 15 Aug 2015, 22:13
@fasmnewbie I feel it's still early for that. The interpreter is far for being complete. Surely i might do that, but in later time.
I have uploaded a new version with minor improvements and bug fixes. A new example 'APPLE3.BAS' demonstrates how to randomly shuffle the console screen. ![]() Last edited by Picnic on 05 Jan 2023, 11:32; edited 44 times in total |
|||
![]() |
|
Picnic 03 Sep 2015, 14:45
I have uploaded a new version with minor improvements and bug fixes.
Hobby BASIC console version of the 2048 web game. ![]() Last edited by Picnic on 27 Apr 2022, 07:54; edited 56 times in total |
|||
![]() |
|
Picnic 09 Oct 2015, 06:27
I have uploaded a new version with minor improvements and bug fixes.
Replacing color 12 (bright blue) with color 13 (bright purple) at a specific area of the screen using the REPAINT command. Code: X=0 Y=0 COLS=40 ROWS=25 VIEW 11 SCREEN 80,25:CLS ANSI 'ART\ANSI\APPLE.ANS' REPAINT X,Y,COLS,ROWS,12,13 INKEY CLS ![]() Last edited by Picnic on 05 Jan 2023, 11:35; edited 66 times in total |
|||
![]() |
|
SergeASM 20 Nov 2015, 10:21
In the file Console.asm I see "Copyright © 2013-2015, Nick Kouvaris". Is this the same Nick Kouvaris, which did flash games on lightforce.freestuff.gr?
Serge |
|||
![]() |
|
Picnic 20 Nov 2015, 11:34
Hi SergeASM,
Yes that's me, nice of you to ask. |
|||
![]() |
|
Picnic 11 May 2016, 11:08
I have uploaded a new version with minor improvements and bug fixes.
An ANSI Encoding Text File Viewer for the Windows console written in Hobby BASIC. ![]() Last edited by Picnic on 27 Apr 2022, 07:58; edited 57 times in total |
|||
![]() |
|
redrum88 19 May 2016, 00:25
Very nice, thanks!
|
|||
![]() |
|
Picnic 14 Jun 2016, 10:08
I have uploaded a new version with minor improvements and bug fixes.
2D Side Movement in the console. Use the Arrow keys to move the sprite. ![]() Last edited by Picnic on 27 Apr 2022, 07:59; edited 61 times in total |
|||
![]() |
|
Picnic 07 Aug 2016, 09:10
I have uploaded a new version with minor improvements and bug fixes.
2D Scrolling Background in the console. Use the Arrow keys to move the sprite. Press Spacebar to jump. ![]() Last edited by Picnic on 27 Apr 2022, 08:04; edited 65 times in total |
|||
![]() |
|
Picnic 21 Oct 2016, 08:41
I have uploaded a new version with minor improvements and bug fixes.
Simple car game for the console that uses RGB colors (Windows 7/10). ![]() Last edited by Picnic on 27 Apr 2022, 08:04; edited 40 times in total |
|||
![]() |
|
filox 21 Oct 2016, 11:52
Sorry but where i can find sources of Hobbybasic?
|
|||
![]() |
|
Goto page Previous 1, 2, 3, 4, 5 Next < Last Thread | Next Thread > |
Forum Rules:
|
Copyright © 1999-2023, Tomasz Grysztar. Also on GitHub, YouTube.
Website powered by rwasa.