add 512kbit ROM image task to Rakefile

This commit is contained in:
mgcaret 2017-01-21 11:15:56 -08:00
parent 7c79171e51
commit 97a3398a7d
1 changed files with 5 additions and 0 deletions

View File

@ -47,3 +47,8 @@ task :build_rom => [:assemble] do
puts "ROM image done: #{dest_rom}"
end
desc "Build SST27SF512 Image"
task :sf512 => [:build_rom] do
sh "cat #{dest_rom} #{dest_rom} > sf512_#{dest_rom}"
end