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

#51 2012-04-14 08:02:56

slinger
Scratcher
Registered: 2011-06-21
Posts: 1000+

Re: I'm making an operating system.

Zeusking19 wrote:

slinger wrote:

Haha, it depends on what you want to do  tongue
It doesn't take years to make an os that turns on then prints "Press enter to shut down" to the screen ;P

That can take anything from a day to a week. Depending on your skill level.

I'm actually planning on doing that  tongue
Just for fun.
Nothing else.


http://s0.bcbits.com/img/buttons/bandcamp_130x27_blue.png

Offline

 

#52 2012-04-14 16:20:02

poemon1
Scratcher
Registered: 2011-01-12
Posts: 500+

Re: I'm making an operating system.

slinger wrote:

Zeusking19 wrote:

slinger wrote:

Haha, it depends on what you want to do  tongue
It doesn't take years to make an os that turns on then prints "Press enter to shut down" to the screen ;P

That can take anything from a day to a week. Depending on your skill level.

I'm actually planning on doing that  tongue
Just for fun.
Nothing else.

Save it as a bat file:

Code:

@echo off
set /p="Press any button to shutdown" 
shutdown -s -t 10

XD


http://i47.tinypic.com/rrqe13.gif

Offline

 

#53 2012-04-14 16:21:58

poemon1
Scratcher
Registered: 2011-01-12
Posts: 500+

Re: I'm making an operating system.

TheCatAndTheBanana wrote:

NattJohnson wrote:

if you like mincraft, pleas can you visit my project? (link)
I don't mind if you don't I just made it because minecraft is awesome!
Thank you weaf

Please don't spam, it's rude and annoying...

Ontopic: Will it be DOS or graphical interfaced?

Thanks for saying that for me, I don't appreciate spamming.  smile


http://i47.tinypic.com/rrqe13.gif

Offline

 

#54 2012-04-14 16:24:05

poemon1
Scratcher
Registered: 2011-01-12
Posts: 500+

Re: I'm making an operating system.

I learned A LOT!!!!!!! Thanks! P.s. I am making one with graphics, ITS NOT IMPOSSIBLE! YOU JUST NEED EASy68K  smile   smile


http://i47.tinypic.com/rrqe13.gif

Offline

 

#55 2012-04-14 16:31:09

ZeroLuck
Scratcher
Registered: 2010-02-23
Posts: 500+

Re: I'm making an operating system.

poemon1 wrote:

I learned A LOT!!!!!!! Thanks! P.s. I am making one with graphics, ITS NOT IMPOSSIBLE! YOU JUST NEED EASy68K  smile   smile

Have you already started with a boot loader?

Last edited by ZeroLuck (2012-04-14 16:31:32)


http://3.bp.blogspot.com/-oL2Atzp0Byw/T465vIQ36dI/AAAAAAAAADo/1vqL4PvhkM0/s1600/scratchdachwiki.png

Offline

 

#56 2012-04-14 18:15:01

poemon1
Scratcher
Registered: 2011-01-12
Posts: 500+

Re: I'm making an operating system.

ZeroLuck wrote:

poemon1 wrote:

I learned A LOT!!!!!!! Thanks! P.s. I am making one with graphics, ITS NOT IMPOSSIBLE! YOU JUST NEED EASy68K  smile   smile

Have you already started with a boot loader?

No, not yet, I was just messing around with it  tongue


http://i47.tinypic.com/rrqe13.gif

Offline

 

#57 2012-04-15 16:12:29

poemon1
Scratcher
Registered: 2011-01-12
Posts: 500+

Re: I'm making an operating system.

Hey, guys. I need help. I was using EASy68K, and it wouldn't work correctly. My code was

Code:

*-----------------------------------------------------------
* Program    :
* Written by :
* Date       :
* Description:
*-----------------------------------------------------------
    ORG    $1000
START:                ; first instruction of program

    MOVE.L #RED, D1
    MOVE.B #81, D0
    TRAP #15
    MOVE.L #0, D1
    MOVE.L #0, D2
    MOVE.B #89, D0
    TRAP #15
    MOVE.L #4, A1
    MOVE.L #TEXT, D1
    MOVE.B #1, D0
    TRAP #15

    MOVE.B    #9,D0
    TRAP    #15        ; halt simulator

* Variables and Strings

TEXT EQU 'Call'
RED EQU $000000FF


    END    START        ; last line of source

BUT, it displays a red background with Y Y Y Y Y .... HELP!


http://i47.tinypic.com/rrqe13.gif

Offline

 

Board footer