This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2012-01-14 23:04:40

ScratchReallyROCKS
Scratcher
Registered: 2009-04-22
Posts: 1000+

DevOS 2.0

Hey look, It's been over a year since I said I would release this.  big_smile  Wonder if anyone remembers it...

But seriously. I've actually been putting some real effort into DevOS 2.0 recently, and I'm almost ready to release 2.0 RC1.

2.0 RC1 will include the new dMech machine language for the VM, which replaces Skip because it is much faster, and DeVux Kernel V1, which is the base for DevOS, and works a lot like Linux. I will also upload a compiler that turns C-style code into something the dMech VM will be able to execute.

DevOS won't have an actual drawn GUI until 2.0 RC2, but it will have a list based console for now.

Here's my progress:

Part: dMech VM       Completed: 80%
Part: DeVux V1        Completed: 10%

To show some of what I'm working on, here's the current DeVux source code (pre-compile):

Code:

! INIT SECTION
! Check to see if DEVFS file system exists on hard drive,
! if not, halt.

&dataio.a

! Data:
#devfs_tag DEVFS
#error_message Error, DEVFS file system not found on hard drive, halting system...
#success_message [OK] DEVFS file system found on hard drive

! Code:
Memory.move(#devfs_tag, 901)
Disk.read(1, 900)
BranchEqual(900, 901) {
   Memory.move(#success_message, #DISPLAY)
   Jump($Init_done)
}
Memory.move(#success_message, #SCREEN)
Release(devfs_tag)
Release(error_message)
Release(success_message)

$init_done

! Temporary

I'll update this thread frequently.  smile


http://imageshack.us/a/img694/3806/sigmad.png

Offline

 

#2 2012-01-15 21:55:14

ScratchReallyROCKS
Scratcher
Registered: 2009-04-22
Posts: 1000+

Re: DevOS 2.0

Heh. Guess no one does remember.


http://imageshack.us/a/img694/3806/sigmad.png

Offline

 

#3 2012-01-15 22:53:47

elfin8er
Scratcher
Registered: 2012-01-15
Posts: 1000+

Re: DevOS 2.0

So, is this a real OS? Could I boot my computer into it? Could you put a bit more info?


http://i1340.photobucket.com/albums/o723/stevetheipad/goldlittlesig.png

Offline

 

#4 2012-01-18 15:49:17

ScratchReallyROCKS
Scratcher
Registered: 2009-04-22
Posts: 1000+

Re: DevOS 2.0

elfin8er wrote:

So, is this a real OS? Could I boot my computer into it? Could you put a bit more info?

Yes, it's technically a real OS. (Just because it RUNS in Scratch doesn't mean it's not an OS) No, you couldn't boot your computer to it unless I write the compiler for x86 (which I may do).

As for the more info, DevOS was an OS I made in June of 2010 that was made so that people could write apps for it, inside of it. That's how it got the name: DEVeloper Operating System. The programming language it used was called SKIP, and ran on a Scratch-based VM. The next version I made was DevOS 1.9, which ran a much better and faster version of SKIP, but lacked many essentials of a real OS, as my knowledge of how a real one worked was a lot more limited than I thought it was. DevOS 2.0 was a project I totally gave up on because I didn't know enough when I planned to release it on December 25, 2010. Now that I know more about how OS's work, I plan to finish this with intentions of it being similar to Linux.

That's basically the story  smile


http://imageshack.us/a/img694/3806/sigmad.png

Offline

 

#5 2012-01-18 15:59:58

elfin8er
Scratcher
Registered: 2012-01-15
Posts: 1000+

Re: DevOS 2.0

So did you make it with a mod, or did you code a new code your self the runs the programs. Can you give me a link to this project so I can see it to better understand it?


http://i1340.photobucket.com/albums/o723/stevetheipad/goldlittlesig.png

Offline

 

#6 2012-01-18 16:02:15

voyager
New Scratcher
Registered: 2012-01-13
Posts: 38

Re: DevOS 2.0

I remember!  big_smile

Offline

 

#7 2012-01-18 18:05:31

luiysia
Scratcher
Registered: 2011-07-05
Posts: 1000+

Re: DevOS 2.0

This sounds interesting! When do you plan to be finished?


http://i50.tinypic.com/dx00pd.gif

Offline

 

#8 2012-01-18 19:09:15

Scratch_OSX
Scratcher
Registered: 2009-12-05
Posts: 100+

Re: DevOS 2.0

I think I remember playing an older version of this...


--Scratch_OSX

Offline

 

#9 2012-01-20 22:00:54

ScratchReallyROCKS
Scratcher
Registered: 2009-04-22
Posts: 1000+

Re: DevOS 2.0

luiysia wrote:

This sounds interesting! When do you plan to be finished?

Few days, possibly weeks, shouldn't be too long though.

And for elfin8er:
DevOS 1.0
DevOS 1.9


http://imageshack.us/a/img694/3806/sigmad.png

Offline

 

Board footer