summaryrefslogtreecommitdiff
path: root/arch/i386 (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-01-20serial: don't declare serial_init as staticDanny Holman1-1/+1
The function serial_init should not be declared as static. This function could change under a different architecture and should be defined with the target architecture. Signed-off-by: Danny Holman <dholman@gymli.xyz>
2021-01-20i386: add serial port supportDanny Holman3-0/+57
Add support for serial communication in the i386 architecture. Signed-off-by: Danny Holman <dholman@gymli.xyz>
2021-01-17arch: i386: add support for x86 processorsDanny Holman5-0/+142
Add support for 32-bit x86 processors, i.e. the 80386 and above. Signed-off-by: Danny Holman <dholman@gymli.xyz>