rust-mos

Empowering everyone to build reliable and efficient software. (by mrk-its)

Rust-mos Alternatives

Similar projects and alternatives to rust-mos

  1. rust

    2,784 rust-mos VS rust

    Empowering everyone to build reliable and efficient software.

  2. Nutrient

    Nutrient – The #1 PDF SDK Library, trusted by 10K+ developers. Other PDF SDKs promise a lot - then break. Laggy scrolling, poor mobile UX, tons of bugs, and lack of support cost you endless frustrations. Nutrient’s SDK handles billion-page workloads - so you don’t have to debug PDFs. Used by ~1 billion end users in more than 150 different countries.

    Nutrient logo
  3. adventofcode

    Advent of Code solutions of 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023 and 2024 in Scala (by sim642)

  4. AoC

    87 rust-mos VS AoC

    my personal repo for the advent of code yearly challenge (by Fadi88)

  5. adventofcode

    Solutions for problems from AdventOfCode.com (by bhosale-ajay)

  6. adventofcode

    Discontinued My solutions to the Advent of Code challenges (by djotaku)

  7. advent-of-code-go

    All 10 years of adventofcode.com solutions in Go/Golang (and a little Python); 2015-2024

  8. adventofcode

    Advent of code solutions (by mathsaey)

  9. CodeRabbit

    CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.

    CodeRabbit logo
  10. Advent-of-Code

    Advent of Code (by michaeljgallagher)

  11. adventofcode

    Answers to Advent of Code (by viceroypenguin)

  12. aoc2022

    Discontinued Advent of Code 2022 (by ednl)

  13. AdventOfCode

    My Advent of Code solutions. I also upload videos of my solves: https://www.youtube.com/channel/UCuWLIm0l4sDpEe28t41WITA

  14. CodeLLDB

    A native debugger extension for VSCode based on LLDB

  15. adventofcode

    adventofcode.com solutions (by linl33)

  16. llvm-mos

    Port of LLVM to the MOS 6502 and related processors

  17. advents-of-code

    🎄🎁 Solutions for the yearly advent of code challenges

  18. aoc2022

    My solutions for Advent of Code 2022 (by tumdum)

  19. advent-of-code

    For sharing my adventofcode.com solutions (by kbielefe)

  20. embassy

    82 rust-mos VS embassy

    Modern embedded framework, using Rust and async.

  21. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better rust-mos alternative or higher similarity.

rust-mos discussion

Log in or Post with

rust-mos reviews and mentions

Posts with mentions or reviews of rust-mos. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-07-27.
  • Roguecraft Devs on Developing for Amiga in 2024
    3 projects | news.ycombinator.com | 27 Jul 2024
    For Commodore the computer, there is a Rust and LLVM fork for MOS:

    - https://github.com/mrk-its/rust-mos

    It's able to generate binaries that are executed on C64. Tried it on the

  • Ruby on the Apple II: Adventures in Retro Programming [video]
    2 projects | news.ycombinator.com | 10 Feb 2024
    rust the compiler, hell no.

    But there is an llvm-mos project to generate 6502 code and that can be used to cross compile rust code.

    https://llvm-mos.org/wiki/Welcome

    https://llvm-mos.org/wiki/Rust

    https://github.com/mrk-its/rust-mos

  • I learned to program the Commodore 64 in basic and compiled C
    2 projects | news.ycombinator.com | 26 Feb 2023
  • -🎄- 2022 Day 12 Solutions -🎄-
    146 projects | /r/adventofcode | 11 Dec 2022
    It was possible thanks to great https://llvm-mos.org/wiki/Welcome project (it adds 6502 target to LLVM). Adding 6502 support to rust was easy part :] https://github.com/mrk-its/rust-mos
  • LLVM-MOS 6502 Back end [pdf]
    2 projects | news.ycombinator.com | 12 Nov 2022
    This is a super fun project to play around with. I'm currently trying to build a C64 sprite multiplexer in mostly straight C++ using LLVM-MOS and while it's definitely not going to be the most optimized multiplexer out there, I'm finding it most adequate performance-wise.

    Whereas it's probably a long way away from being able to use this for democoding due to the mostly cycle-accurate nature of the effects, for creating homebrew games and utilities this is really quite suitable: write high-level logic and sprinkle in some inline assembly here and there for the really performance critical parts.

    The code that is being generated is already quite good and (on first glance) looks better than what's coming out of cc65, for instance.

    There's also rust-mos which uses LLVM-MOS to compile Rust code. It unfortunately still has some issues (e.g. [1]) but that is looking really promising as well.

    Kudos to all involved :)

    [1] https://github.com/mrk-its/rust-mos/issues/16

  • The Rise of Rust, the ‘Viral’ Secure Programming Language That’s Taking Over Tech
    6 projects | /r/rust | 2 Nov 2022
    The MEGA 65 doesn't appear to have shipped yet. The best data I could find is the MEGA 65 is based on a "GS4510". The "GS4510" is compatible with a "4502", which in turn is compatible with the 65CE02. The 65CE02 uses a different manufacturing process but the same ISA as the 6502, which is supported by rust-mos and lvm-mos](https://github.com/llvm-mos/llvm-mos).
  • Can you write for the Commodore 64 in Rust? Why yes, yes you can!
    4 projects | /r/rust | 22 May 2022
    Using llvm-mos, rust-mos, a lot of time compiling compilers and support from Mariusz (the rust-mos author), I was finally able to program like it was 1982...
  • Show HN: My website, hosted on a 386 25 MHz, 4 MiB of RAM, 38400 baud internet
    1 project | news.ycombinator.com | 16 Apr 2022
    This fork is handy for that. It’s fun to play with, but you need to do a decent amount yourself to get it set up.

    https://github.com/mrk-its/rust-mos

  • Can Rust do every low level stuff C/C++ do?
    7 projects | /r/rust | 9 Mar 2022
    Thanks to llvm-mos project there is also working rust fork for MOS-6502: https://github.com/mrk-its/rust-mos/tree/mos_target, so you can target 8-bit atari and c64
  • Rust on the MOS 6502: Beyond Fibonacci
    8 projects | news.ycombinator.com | 21 Sep 2021
  • A note from our sponsor - Nutrient
    www.nutrient.io | 13 Feb 2025
    Other PDF SDKs promise a lot - then break. Laggy scrolling, poor mobile UX, tons of bugs, and lack of support cost you endless frustrations. Nutrient’s SDK handles billion-page workloads - so you don’t have to debug PDFs. Used by ~1 billion end users in more than 150 different countries. Learn more →

Stats

Basic rust-mos repo stats
10
58
0.0
12 months ago

Sponsored
Nutrient – The #1 PDF SDK Library, trusted by 10K+ developers
Other PDF SDKs promise a lot - then break. Laggy scrolling, poor mobile UX, tons of bugs, and lack of support cost you endless frustrations. Nutrient’s SDK handles billion-page workloads - so you don’t have to debug PDFs. Used by ~1 billion end users in more than 150 different countries.
www.nutrient.io