I still get "Today is Sunday." as my result. Am I missing the concept of something? It seems to be just taking the first one on the list.
Heres my .asm and .lib:
; Macro to initialize registers at program start
_initreg MACRO
mov ax, @data ; Initialize
mov ds, ax ; Segment registers
sub...