Rename to library standard.

This commit is contained in:
Erik Stenman
2019-02-15 12:34:46 +01:00
parent e6623bd252
commit c5a9878bd9
10 changed files with 53 additions and 54 deletions
+3 -3
View File
@@ -43,8 +43,8 @@ assemble(File, Opts) ->
Verbose = proplists:get_value(verbose, Opts, false),
case proplists:get_value(outfile, Opts, undefined) of
undefined ->
Asm = aefa_asm:read_file(File),
{Env, BC} = aefa_asm:asm_to_bytecode(Asm, Opts),
Asm = aeb_fate_asm:read_file(File),
{Env, BC} = aeb_fate_asm:asm_to_bytecode(Asm, Opts),
case Verbose of
true ->
io:format("Env: ~0p~n", [Env]);
@@ -52,7 +52,7 @@ assemble(File, Opts) ->
end,
io:format("Code: ~0p~n", [BC]);
OutFile ->
aefa_asm:assemble_file(File, OutFile, Opts)
aeb_fate_asm:assemble_file(File, OutFile, Opts)
end.