diff options
| author | Eugen Wissner <belka@caraus.de> | 2026-01-02 18:28:29 +0100 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2026-01-04 13:04:22 +0100 |
| commit | f86d06236cefe3de17965f641586c14a9ccb9f82 (patch) | |
| tree | c663be87f3791f9b7619d381c0e52f38a26f28c9 /Rakefile | |
| parent | 58e708f44c23144622a9a5546b07d5c01d18db56 (diff) | |
| download | elna-f86d06236cefe3de17965f641586c14a9ccb9f82.tar.gz | |
Remove support for hardware registers in TAC
Diffstat (limited to 'Rakefile')
| -rw-r--r-- | Rakefile | 13 |
1 files changed, 2 insertions, 11 deletions
@@ -43,19 +43,10 @@ end desc 'Convert previous stage language into the current stage language' task :convert do - File.open('boot/stage17/cl.elna', 'w') do |current_stage| - File.readlines('boot/stage16/cl.elna').each do |line| + File.open('boot/stage18/cl.elna', 'w') do |current_stage| + File.readlines('boot/stage17/cl.elna').each do |line| current_stage << line end - current_stage << <<~STAGE - - proc f(x: ElnaTreeExpression); - var - y: Word; - begin - y := x.kind - end; - STAGE end end |
