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

#1 2012-01-06 20:21:32

FreshStudios
Scratcher
Registered: 2011-04-11
Posts: 500+

Nixon Products

Nixon is sort of like a Microsoft/Apple thing.. I am currently building a computer  smile  I took apart my dell laptop!


http://i43.tinypic.com/24ymnbn.png

Offline

 

#2 2012-01-06 20:34:40

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

Re: Nixon Products

Lol?
You aren't able to build a computer...
I think writing your own OS is to hard for you too.
Sorry, but you have to know Assembly and much more!
What do you think: how many people are working very much time on things like Windows?!


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

Offline

 

#3 2012-01-06 20:45:02

FreshStudios
Scratcher
Registered: 2011-04-11
Posts: 500+

Re: Nixon Products

I am not building the operating system, and are you mocking me? I built my own keyboard last year (it was bendable!)

I can just download the OS from moonOS.org too...
I have a ram, hard drive, graphics card,
sound card, and motherboard, fan processor, and more  hmm


http://i43.tinypic.com/24ymnbn.png

Offline

 

#4 2012-01-06 20:49:30

nathanprocks
Scratcher
Registered: 2011-04-14
Posts: 1000+

Re: Nixon Products

you could make and compile a Linux From Scratch OS or make one based on Ubuntu or something


http://carrot.cassiedragonandfriends.org/Scratch_Signature/randomsig.php
http://trinary.site40.net/images/scratchrank.php?username=nathanprocks&display=small

Offline

 

#5 2012-01-06 21:04:28

FreshStudios
Scratcher
Registered: 2011-04-11
Posts: 500+

Re: Nixon Products

; directive to create BOOT file:
#MAKE_BOOT#

; Boot record is loaded at 0000:7C00,
; so inform compiler to make required
; corrections:
ORG 7C00h

; load message address into SI register:
LEA SI, msg

; teletype function id:
MOV AH, 0Eh

print: MOV AL, [SI]
CMP AL, 0
JZ done
INT 10h ; print using teletype.
INC SI
JMP print

; wait for 'any key':
done: MOV AH, 0
INT 16h

; store magic value at 0040h:0072h:
; 0000h - cold boot.
; 1234h - warm boot.
MOV AX, 0040h
MOV DS, AX
MOV w.[0072h], 0000h ; cold boot.

JMP 0FFFFh:0000h ; reboot!

new_line EQU 13, 10

msg DB 'Hello This is My First Boot Program!'
DB new_line, 'Press any key to reboot', 0

found this easy boot program  smile


http://i43.tinypic.com/24ymnbn.png

Offline

 

#6 2012-01-07 03:25:53

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

Re: Nixon Products

I can help you to jump in the protected mode and loading a C Kernel...
But your Assembly boot program isn't x86 NASM, is it?


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

Offline

 

#7 2012-01-07 03:28:10

Thescratch3
Scratcher
Registered: 2011-06-14
Posts: 1000+

Re: Nixon Products

This is cool! Good luck buddy on the computer building... process! I hope to use it one day ;<)


View my projects. Or face The scratch curse! (Get it?)
http://i56.tinypic.com/2cdk8hy.png

Offline

 

#8 2012-01-07 03:44:12

nathanprocks
Scratcher
Registered: 2011-04-14
Posts: 1000+

Re: Nixon Products

ZeroLuck wrote:

I can help you to jump in the protected mode and loading a C Kernel...
But your Assembly boot program isn't x86 NASM, is it?

i'm sure i have found that same code somewhere before... lol


http://carrot.cassiedragonandfriends.org/Scratch_Signature/randomsig.php
http://trinary.site40.net/images/scratchrank.php?username=nathanprocks&amp;display=small

Offline

 

#9 2012-01-07 04:06:20

WindowsExplorer
Scratcher
Registered: 2011-02-25
Posts: 1000+

Re: Nixon Products

Building your own computer, eh? Sounds cool!


http://i.imgur.com/H6LLdnK.pnghttp://i.imgur.com/VYuD7BY.png

Offline

 

#10 2012-01-07 11:30:01

FreshStudios
Scratcher
Registered: 2011-04-11
Posts: 500+

Re: Nixon Products

ZeroLuck wrote:

I can help you to jump in the protected mode and loading a C Kernel...
But your Assembly boot program isn't x86 NASM, is it?

Most Boot Programs are x86, so I guess that's right.


http://i43.tinypic.com/24ymnbn.png

Offline

 

Board footer