Skip to content

Commit

Permalink
Cleaned up environment var references
Browse files Browse the repository at this point in the history
  • Loading branch information
boisy committed Apr 14, 2005
1 parent 719f123 commit 9c8149a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions level1/cmds/login.asm
Original file line number Diff line number Diff line change
Expand Up @@ -101,11 +101,11 @@ NrrwMsg fcb C$LF,C$LF
ENDC
ENDC
fcc " V0"
fcb 48+_$NITROS9VERSION
fcb 48+NOS9VER
fcc ".0"
fcb 48+_$NITROS9MAJOR
fcb 48+NOS9MAJ
fcc ".0"
fcb 48+_$NITROS9MINOR
fcb 48+NOS9MIN
fcb C$LF
NrrwMsgL equ *-NrrwMsg
UName fcb C$LF
Expand Down
6 changes: 3 additions & 3 deletions level1/modules/init.asm
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ start equ *
fdb DefBoot offset to boot module name
fcb $01 write protect flag (?)
fcb Level OS level
fcb _$NITROS9VERSION OS version
fcb _$NITROS9MAJOR OS major revision
fcb _$NITROS9MINOR OS minor revision
fcb NOS9VER OS version
fcb NOS9MAJ OS major revision
fcb NOS9MIN OS minor revision
fcb CRCOff feature byte #1
fcb $00 feature byte #2
fcb 0,0,0,0,0,0,0,0 reserved
Expand Down
2 changes: 1 addition & 1 deletion rules.mak
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ NOS9DBG = 0

#################### DO NOT CHANGE ANYTHING BELOW THIS LINE ####################

NITROS9VER = v0$(NITROS9VERSION)0$(NITROS9MAJOR)0$(NITROS9MINOR)
NITROS9VER = v0$(NOS9VER)0$(NOS9MAJ)0$(NOS9MIN)

ifndef NITROS9DIR
NITROS9DIR = $(HOME)/nitros9
Expand Down

0 comments on commit 9c8149a

Please sign in to comment.