[Freedos-user] Does BTTR accept new members?

2015-06-12 Thread Micheal Muniko
Does BTTR ever accept new members anymore? I e-mailed the admin many
times but never got a reply.

--
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


[Freedos-user] MMD Library Source Released

2015-06-11 Thread Micheal Muniko
I'm releasing the source code of my MMD library. I use OpenWatcom DOS32
target to compile the library. It can be downloaded here
https://www.mediafire.com/?0ff7gxhwfw6xuvw.

-- Micheal, the boy who makes Shaw's Nightmare
--
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] MMD Library Source Released

2015-06-11 Thread Micheal Muniko
1. The files are free. You can use it in any project.

2. I just did not feel the need to switch to another extender. DOS4GW
worked fine for me. I did experiment with PMODE/W while developing SN,
and I used it for SNG2MIDI but that's pretty much it.

On 6/11/15, Rugxulo rugx...@gmail.com wrote:
 Hi,

 1). What license is this under? (And what license are the songs? What
 about any included samples/instruments/etc.?) Preferably it is all
 free/libre, e.g. four freedoms (OSI or FSF). I know nobody wants to
 think about that, but it's quite important, or some people won't
 publicly mirror it!!

 2). Why did you use (bloated) DOS4GW? Did you need it or just
 accidentally defaulting to it by default? FYI, Causeway is much
 smaller (and free-r). You can bind it to the .EXEs directly or just
 copy/rename CWSTUB.EXE to DOS4GW.EXE .

 3). Although I'm no professional, I heavily improved your makefile.
 I'm also still getting warnings about missing prototypes (which you
 should probably fix). Also, the resulting .EXEs each differ in two
 bytes, but I assume that's just a fluke. (If someone knows why, please
 tell me. I don't normally like non-reproducible builds.)

 ==
 c:\rugxulo\tmp\delme\mmdfc /b play.ex play.exe
 Comparing files play.ex and PLAY.EXE
 37CC: 05 45
 37E4: 03 43

 c:\rugxulo\tmp\delme\mmdfc /b mseq.ex mseq.exe
 Comparing files mseq.ex and MSEQ.EXE
 37CC: 05 45
 37E4: 03 43
 ==

 So here's the new makefile (no tabs needed!):

 ==
 CC = wcc386
 CFLAGS = -bt=dos

 LD = wlink
 LDFLAGS = op quiet

 AR = wlib

 #EXTENDER = causeway
 EXTENDER = dos4g

 all: mseq.exe play.exe .SYMBOLIC

 mseq.exe : mseq.obj mmd.lib
   $(LD) $(LDFLAGS) system $(EXTENDER) file $[. library $].
 play.exe : play.obj mmd.lib
   $(LD) $(LDFLAGS) system $(EXTENDER) file $[. library $].

 mseq.obj : mseq.c mmd.h
   $(CC) $(CFLAGS) $[.
 play.obj : play.c mmd.h
   $(CC) $(CFLAGS) $[.
 fm.obj : fm.c fm.h
   $(CC) $(CFLAGS) $[.
 mmd.obj : mmd.c mmd.h
   $(CC) $(CFLAGS) /4r /s /or $[.

 mmd.lib : fm.obj mmd.obj
   $(AR) $@ $

 clean: .SYMBOLIC
   rm -f *.err *.obj

 cleanall: clean .SYMBOLIC
   rm -f play.exe mseq.exe mmd.lib
 ==


 On Thu, Jun 11, 2015 at 2:42 PM, Micheal Muniko michealmun...@gmail.com
 wrote:

 I'm releasing the source code of my MMD library. I use OpenWatcom DOS32
 target to compile the library. It can be downloaded here [
 https://www.mediafire.com/?0ff7gxhwfw6xuvw ].

 -- Micheal, the boy who makes Shaw's Nightmare

 --
 ___
 Freedos-user mailing list
 Freedos-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/freedos-user


--
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] OpenWatcom unavailable!?!?!?!

2015-05-24 Thread Micheal Muniko
I've tried the DOS host. So far it doesn't work right. It can't read
makefiles correctly and VI crashes when loading a file from command
line. There are some more bugs but these are the ones that bother me
personally.

I've reported both bugs but I've haven't seen a reply yet.

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] FreeDOS wishlist

2015-05-17 Thread Micheal Muniko
Ability to run Windows 3.1 in 386 enhanced mode.

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] MMD library

2015-05-16 Thread Micheal Muniko
Headers added.

The compiler is OpenWatcom and it is protected mode.

On Sat, May 16, 2015 at 8:30 PM, Mateusz Viste mate...@viste.fr wrote:

 Not to complain, but it's hard to understand what this do exactly, and
 how one's supposed to use it.

 What compiler is it targetted to? Protected mode or real mode? If real
 mode, what memory model? What kind of files does this play?

 There is no include headers provided even, so it's impossible to guess
 the functions prototypes.

 Also, being a closed-source DOS library in 2015 makes it very unlikely
 to be used by anyone.

 It's nice you try to do stuff of course, but as it is now, I fear the
 library is unusable.

 regards,
 Mateusz


 On 16/05/2015 18:44, Micheal Muniko wrote:
  I'm releasing a new library. It is called MMD which stands for Michael's
  Music Driver. It is free for non-commercial use.
 
  Download it here: https://www.mediafire.com/?0ff7gxhwfw6xuvw
 



 --
 One dashboard for servers and applications across Physical-Virtual-Cloud
 Widest out-of-the-box monitoring support with 50+ applications
 Performance metrics, stats and reports that give you Actionable Insights
 Deep dive visibility with transaction tracing using APM Insight.
 http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
 ___
 Freedos-user mailing list
 Freedos-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/freedos-user

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


[Freedos-user] MMD library

2015-05-16 Thread Micheal Muniko
I'm releasing a new library. It is called MMD which stands for Michael's
Music Driver. It is free for non-commercial use.

Download it here: https://www.mediafire.com/?0ff7gxhwfw6xuvw
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] Shaw's Nightmare

2015-04-19 Thread Micheal Muniko
In case you hadn't heard, v1.66 is release and can be downloaded here:
shawsnightmare.ucoz.com/SN1_66.zip

You can visit and join the forums here: shawsnightmare.ucoz.com. If you
have a uID account you can use it or you can create an account just for
this forum.

-- Micheal, the boy who makes Shaw's Nightmare
--
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15utm_medium=emailutm_campaign=VA_SF___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] Shaw's Nightmare

2014-12-29 Thread Micheal Muniko
I've released alphas and beta versions of the game.
http://www.mediafire.com/download/36t9ql7z19x14i8/SN0_1.ZIP: tech demo.
http://www.mediafire.com/download/ddem9tk51xdaidu/SN0_3.ZIP: alpha 0.3
http://www.mediafire.com/download/u7hdsdtevhv4omt/SN0_6.ZIP: alpha 0.6
http://www.mediafire.com/download/k88mk8zv58ztgs3/SNBETA.ZIP: Beta 0.91

Do not contact us about this. If you do you will be Fusion Cannoned. :)
--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] Shaw's Nightmare

2014-12-29 Thread Micheal Muniko
Oh and Shaw's Nightmare has a mailing list here. To post, send e-mail to
this address: shawsnightm...@googlegroups.com

To view it go here: https://groups.google.com/forum/#!forum/shawsnightmare
--
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] Shaw's Nightmare

2014-12-07 Thread Micheal Muniko
It's not that I don't want people to view the source code. I just want
trustworthy people to view it. But I may release the source code if the
project gets cancelled.

-- Michael, the boy who makes Shaw's Nightmare
--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user