1
0
mirror of https://github.com/dschmenk/PLASMA.git synced 2024-09-29 16:55:22 +00:00

Print banner *after* setting heap address

This commit is contained in:
David Schmenk 2018-01-10 10:29:27 -08:00
parent 6213bbf3ef
commit a58f3639a5
2 changed files with 8 additions and 8 deletions

View File

@ -1038,14 +1038,14 @@ def execmod(modfile)#1
return -perr
end
//
// Print PLASMA version
//
prstr(@verstr); prbyte(version.1); cout('.'); prbyte(version.0); crout
//
// Get heap start.
//
heap = *freemem
//
// Print PLASMA version
//
prstr(@verstr); prbyte(version.1); cout('.'); prbyte(version.0); crout
//
// Init symbol table.
//
symtbl = allocheap($200)

View File

@ -1356,14 +1356,14 @@ def execmod(modfile)#1
return -perr
end
//
// Print PLASMA version
//
prstr("PLASMA "); prbyte(version.1); cout('.'); prbyte(version.0); crout
//
// Get heap start.
//
heap = *freemem
//
// Print PLASMA version
//
prstr("PLASMA "); prbyte(version.1); cout('.'); prbyte(version.0); crout
//
// Init symbol table.
//
stodci(@syslibstr, heap)