From 333b605b2afd472b823aeda0adf0e8b1ea9843c0 Mon Sep 17 00:00:00 2001 From: fishsoupisgood Date: Mon, 27 May 2019 02:41:51 +0100 Subject: initial commit from asl-1.41r8.tar.gz --- marks.asm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 marks.asm (limited to 'marks.asm') diff --git a/marks.asm b/marks.asm new file mode 100644 index 0000000..b501f98 --- /dev/null +++ b/marks.asm @@ -0,0 +1,29 @@ +ConstBUF32 equ 65.12 +ConstFL900 equ 33.52 +ConstMIC51 equ 359.52 + + + read "BUF32, Pass1 [sec]: ", buf32_1 + read "FL900, Pass1 [sec]: ", fl900_1 + read "MIC51, Pass1 [sec]: ", mic51_1 + read "BUF32, Pass2 [sec]: ", buf32_2 + read "FL900, Pass2 [sec]: ", fl900_2 + read "MIC51, Pass2 [sec]: ", mic51_2 + read "BUF32, Pass3 [sec]: ", buf32_3 + read "FL900, Pass3 [sec]: ", fl900_3 + read "MIC51, Pass3 [sec]: ", mic51_3 + +buf32 equ (buf32_1+buf32_2+buf32_3)/3.0 + message "--> BUF32= \{BUF32}" +fl900 equ (fl900_1+fl900_2+fl900_3)/3.0 + message "--> Fl900= \{FL900}" +mic51 equ (mic51_1+mic51_2+mic51_3)/3.0 + message "--> MIC51= \{MIC51}" + +marks equ ((ConstBUF32/buf32)+(ConstFL900/fl900)+(ConstMIC51/mic51))/3 + message "--> Marks= \{MARKS}" + + read "Clk [MHz]: ", ClkFreq +rel equ marks/ClkFreq + message "Rel=\{REL}" + -- cgit v1.2.3