2023adventofcode/readme.md

46 lines
1003 B
Markdown
Raw Normal View History

2023-12-01 23:51:43 -06:00
# hello and welcome to this
these are the solutions to the 2023 advent of code
i decided to challenge myself by writing all of it in pascal
i've never written pascal before this lol
but yeah
have fun stealing my solutions or praising me for writing the worst quality code you've ever seen
# building/running
every day has two parts, and it can be compiled and run with
`make dayXpartY`
where `X` is the day
2023-12-01 23:55:39 -06:00
and `Y` is the part
2023-12-01 23:51:43 -06:00
the compiled stuff is in build ig
2023-12-03 04:30:24 -06:00
# python one liners
there's python one liners in pythonsrc.
just run em. there's no libraries.
2023-12-03 08:53:47 -06:00
run them in the root dir though
2023-12-03 04:30:24 -06:00
thankies.
2023-12-23 07:05:08 -06:00
# z80
i did day 13 in z80 assembly language too. it's in z80src
it uses zasm to compile and z80sim from [z80pack](https://www.autometer.de/unix4fun/z80pack/).
i edited z80sim to not print out that giant logo at the beginning but otherwise it's just the newest one built.
the binary is included though lol.
2023-12-23 19:27:55 -06:00
make day13part1z80 i think is the make for it.
output is in the hl register.
2023-12-23 07:05:08 -06:00