Skip to content
This repository has been archived by the owner on Jun 9, 2018. It is now read-only.

Commit

Permalink
remove languages/wmlscript in path (.include & load_bytecode)
Browse files Browse the repository at this point in the history
  • Loading branch information
fperrad committed Sep 5, 2009
1 parent 4651065 commit 270cb16
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions src/WMLScript.pir
Expand Up @@ -5,10 +5,10 @@
.loadlib 'wmls_group'
.loadlib 'wmls_ops'

.include 'languages/wmlscript/src/wmlsstdlibs.pir'
.include 'languages/wmlscript/src/stdlibs.pir'
.include 'languages/wmlscript/src/script.pir'
.include 'languages/wmlscript/src/opcode.pir'
.include 'src/wmlsstdlibs.pir'
.include 'src/stdlibs.pir'
.include 'src/script.pir'
.include 'src/opcode.pir'


# Local Variables:
Expand Down
2 changes: 1 addition & 1 deletion src/script.pir
Expand Up @@ -104,7 +104,7 @@

$P0 = get_hll_global '@stdlibs'
unless null $P0 goto L1
load_bytecode 'languages/wmlscript/library/WMLScript.pbc'
load_bytecode 'library/WMLScript.pbc'
L1:
PIRCODE

Expand Down
8 changes: 4 additions & 4 deletions src/wmlsstdlibs.pir
Expand Up @@ -27,10 +27,10 @@ See "WMLScript Standard Libraries Specification".

.sub '__onload' :load :anon
# print "__onload (wmlsstdlibs.pir)\n"
load_bytecode 'languages/wmlscript/library/wmlslang.pbc'
load_bytecode 'languages/wmlscript/library/wmlsfloat.pbc'
load_bytecode 'languages/wmlscript/library/wmlsstring.pbc'
load_bytecode 'languages/wmlscript/library/wmlsconsole.pbc'
load_bytecode 'library/wmlslang.pbc'
load_bytecode 'library/wmlsfloat.pbc'
load_bytecode 'library/wmlsstring.pbc'
load_bytecode 'library/wmlsconsole.pbc'

new $P0, 'Hash'
$P1 = getLang()
Expand Down
2 changes: 1 addition & 1 deletion wmls2pbc.pir
Expand Up @@ -23,7 +23,7 @@ wmlsd, wmls2pir, wmlsi

.sub 'main' :main
.param pmc argv
load_bytecode 'languages/wmlscript/library/WMLScript.pbc'
load_bytecode 'library/WMLScript.pbc'
.local int argc
.local string progname
.local string filename
Expand Down
2 changes: 1 addition & 1 deletion wmls2pir.pir
Expand Up @@ -23,7 +23,7 @@ wmlsd, wmls2pbc, wmlsi

.sub 'main' :main
.param pmc argv
load_bytecode 'languages/wmlscript/library/WMLScript.pbc'
load_bytecode 'library/WMLScript.pbc'
.local int argc
.local string progname
.local string filename
Expand Down
2 changes: 1 addition & 1 deletion wmlsd.pir
Expand Up @@ -23,7 +23,7 @@ parrot-wmlsi

.sub 'main' :main
.param pmc argv
load_bytecode 'languages/wmlscript/library/WMLScript.pbc'
load_bytecode 'library/WMLScript.pbc'
.local int argc
.local string progname
.local string filename
Expand Down
2 changes: 1 addition & 1 deletion wmlsi.pir
Expand Up @@ -24,7 +24,7 @@ parrot-wmlsd

.sub 'main' :main
.param pmc argv
load_bytecode 'languages/wmlscript/library/WMLScript.pbc'
load_bytecode 'library/WMLScript.pbc'
.local int argc
.local string progname
.local string filename
Expand Down

0 comments on commit 270cb16

Please sign in to comment.