From f86d06236cefe3de17965f641586c14a9ccb9f82 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Fri, 2 Jan 2026 18:28:29 +0100 Subject: Remove support for hardware registers in TAC --- Rakefile | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) (limited to 'Rakefile') diff --git a/Rakefile b/Rakefile index 9eb4f04..4e8cbbc 100644 --- a/Rakefile +++ b/Rakefile @@ -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 -- cgit v1.2.3