Hi,
I am not a lawyer, so I am not sure but....
Babystep 2 @ wiki.osdev.org wrote:[ORG 0x7c00]
xor ax, ax ; make it zero
mov ds, ax
mov si, msg
ch_loop:lodsb
or al, al ; zero=end of string
jz hang ; get out
mov ah, 0x0E
int 0x10
jmp ch_loop
hang:
jmp hang
msg db 'Welcome to Macintosh', 13, 10, 0
times 510-($-$$) db 0
db 0x55
db 0xAA
If you see the above code the author indirectly claims that his code is Macintosh (or a part of it) which should be avoided IMO.
don't object to people using the word "MacIntosh". In fact I suspect they rather enjoy it.
I have my doubts, Microsoft actually tried to sue Lindows and "MikeRoweSoft" which are not even close than related.
http://en.m.wikipedia.org/wiki/Microsof ... s.com,_Inc.
http://en.m.wikipedia.org/wiki/Microsof ... keRoweSoft
EDIT: Repaired the link
EDIT2: idk why but phpbb omits the '.' in the hyperlink which is important for the first one, you may put a '.' at the end while navigating to that page.
-Bender