rosco_m68k VS debugpy

Compare rosco_m68k vs debugpy and see what are their differences.

rosco_m68k

Design, documentation and software for the Really Old School Computer (M68K) (by rosco-m68k)

debugpy

An implementation of the Debug Adapter Protocol for Python (by microsoft)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
rosco_m68k debugpy
6 18
151 1,659
0.0% 3.0%
8.5 7.9
8 days ago 1 day ago
C Python
GNU General Public License v3.0 or later GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

rosco_m68k

Posts with mentions or reviews of rosco_m68k. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-08.
  • Show HN: Mutable.ai – Turn your codebase into a Wiki
    14 projects | news.ycombinator.com | 8 Jan 2024
    Nice! I’d be interested to see how it handles https://github.com/rosco-m68k/rosco_m68k , it’s a mixed software / hardware repo, with a lot of code in assembler and C (for an old platform). Might be a challenge?
  • Micro Beast: Self contained 8-bit computer kit in a box
    3 projects | news.ycombinator.com | 5 Jan 2024
    Probably not exactly what you’re looking for (since you mention “outdated”) but there are similar projects with 16 and 32 bit architectures, e.g. https://github.com/rosco-m68k/rosco_m68k

    (Disclosure: I’m the designer and lead developer on that project).

  • DIY pc kit to solder
    2 projects | /r/vintagecomputing | 1 Apr 2022
    Maybe the rosco-m68k computer kit would be up your alley. If you want to stay in z80 land, there's the omega MSX2 clone but I don't see any kits, so you'd have to get the boards and parts yourself.
  • Is TL866II worth buying?
    2 projects | /r/beneater | 21 Mar 2022
    Hi. The 68000 is an "old school CPU", like the 6502 and has no programmable memory inside the chip itself. To operate a 68000 system there generally needs to be some external ROM and RAM chips (and the type can vary). However, the same as with Ben Eater's 6502 and 8-bit kits, the TL866-II will likely be useful to program EPROMs and GALs on a 68000 setup also (it sure has been on the 68000 single board computer I have been tinkering with recently).
  • Atari System V Unix – Unofficial Website
    2 projects | news.ycombinator.com | 28 Jan 2022
  • FPGA VGA solution for an 8-bit 6502 microprocessor
    1 project | /r/FPGA | 9 Dec 2021
    I am working on a similar project Xosera, aimed at adding video to a 68000 era home-brew system (the rosco_m68k). It is basically all working and there is a prototype PCB made. I am just finalizing "blitter" unit design and hopefully I'll have room for some "Amiga style" audio.

debugpy

Posts with mentions or reviews of debugpy. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-26.
  • How to debug Django inside a Docker container with VSCode
    6 projects | dev.to | 26 Jan 2024
    debugpy description from it's repository:
  • Show HN: Mutable.ai – Turn your codebase into a Wiki
    14 projects | news.ycombinator.com | 8 Jan 2024
    I'd love to see what it can do with https://github.com/microsoft/debugpy - and especially how it would handle vendored dependencies.
  • Need help setting working directory of my debugger for python in neovim
    4 projects | /r/neovim | 29 May 2023
    I read that nvim-dap-python uses debugpy which has all these configuration parameters of which one of them is `cwd` which represents the "absolute path to the working directory of the program being debugged".
  • nvim-dap closes my remote session each time I try to restart - how do I make it stop?
    1 project | /r/neovim | 25 Apr 2023
    Hey all, I'm not sure if this is normal or not but, when debugging with nvim-dap, nvim-dap-ui, and nvim-dap-python (which uses debugpy) over a remote session, dap runs exactly once and then closes the entire process. This even happens when I just call `require("dap").restart()`. It's pretty frustrating to deal with and is not something that I was used to when I used to debug with vimspector, which let me restart the debug remotely as many times as I wanted without killing the application that I was connected to. Is this happening for anyone else? How do I disable it? I didn't see anything in debugpy's configuration options. I'm rereading dap's vim :help but haven't found any mention of auto-close / terminate logic yet.
  • What has been people's experience with nvim-dap? Or integrating the debugging experience within Neovim itself?
    5 projects | /r/neovim | 23 Apr 2023
    -- Debug adapter plug-in. Debug anything in Neovim { "mfussenegger/nvim-dap", config = function() vim.keymap.set("n", "d", ":DapContinue") vim.keymap.set("n", "dl", ":DapStepInto") vim.keymap.set("n", "dj", ":DapStepOver") vim.keymap.set("n", "dh", ":DapStepOut") vim.keymap.set("n", "dz", ":ZoomWinTabToggle") vim.keymap.set( "n", "dgt", -- dg as in debu[g] [t]race ":lua require('dap').set_log_level('TRACE')" ) vim.keymap.set( "n", "dge", -- dg as in debu[g] [e]dit function() vim.cmd(":edit " .. vim.fn.stdpath('cache') .. "/dap.log") end ) vim.keymap.set("n", "", ":DapStepOut") vim.keymap.set("n", "", ":DapStepOver") vim.keymap.set("n", "", ":DapStepInto") vim.keymap.set( "n", "d-", function() require("dap").restart() end ) vim.keymap.set( "n", "d_", function() require("dap").terminate() require("dapui").close() end ) end, lazy = true, }, -- A default "GUI" front-end for nvim-dap { "rcarriga/nvim-dap-ui", config = function() require("dapui").setup() -- Note: Added this dd duplicate of because somehow the -- mapping keeps getting reset each time I restart nvim-dap. Annoying but whatever. -- vim.keymap.set( "n", "dd", function() require("dapui").open() -- Requires nvim-dap-ui vim.cmd[[DapContinue]] -- Important: This will lazy-load nvim-dap end ) end, dependencies = { "mfussenegger/nvim-dap", "mfussenegger/nvim-dap-python", -- Optional adapter for Python }, }, -- TODO: Make sure that debugpy is installed. Otherwise, disable -- Reference: https://github.com/mfussenegger/nvim-dap-python#installation -- { "mfussenegger/nvim-dap-python", config = function() require("dap-python").setup("/path/to/python/here") -- XXX: Replace this with your preferred Python, if wanted -- An example configuration to launch any Python file, via Houdini -- table.insert( -- require("dap").configurations.python, -- { -- type = "python", -- request = "launch", -- name = "Launch Via hython", -- program = "${file}", -- python = "/opt/hfs19.5.569/bin/hython" -- -- ... more options, see https://github.com/microsoft/debugpy/wiki/Debug-configuration-settings -- } -- ) end, dependencies = { "mfussenegger/nvim-dap", "nvim-treesitter/nvim-treesitter", }, }, -- Remember nvim-dap breakpoints between sessions, ``:PBToggleBreakpoint`` { "Weissle/persistent-breakpoints.nvim", config = function() require("persistent-breakpoints").setup{ load_breakpoints_event = { "BufReadPost" } } vim.keymap.set("n", "db", ":PBToggleBreakpoint") end, }
  • Unable to view complex numpy arrays in Dataviewer in VSCode
    2 projects | /r/vscode | 10 Feb 2023
    After testing I have the same situation. I reported this issue on GitHub, you can follow up.
  • How to setup neotest with neotest-python and dap?
    3 projects | /r/neovim | 15 Dec 2022
    vim.fn.sign_define('DapBreakpoint', {text='🛑', texthl='', linehl='', numhl=''}) dap.configurations.python = { { -- The first three options are required by nvim-dap type = 'python'; -- the type here established the link to the adapter definition: `dap.adapters.python` request = 'launch'; name = "Launch file"; -- Options below are for debugpy, see https://github.com/microsoft/debugpy/wiki/Debug-configuration-settings for supported options program = "${file}"; -- This configuration will launch the current file if used. pythonPath = function() -- debugpy supports launching an application with a different interpreter then the one used to launch debugpy itself. -- The code below looks for a `venv` or `.venv` folder in the current directly and uses the python within. -- You could adapt this - to for example use the `VIRTUAL_ENV` environment variable. return os.getenv("VIRTUAL_ENV") .. "/bin/python" or '/usr/bin/env python' end; }, }
  • How does mfussenegger / nvim-dap-python with nvim-dap runs the code in venv?
    1 project | /r/neovim | 30 Oct 2022
  • What Python debugger do you use?
    2 projects | /r/Python | 2 Sep 2022
  • Any functionality like VS Code debugger from command line (for Python)?
    2 projects | /r/learnpython | 31 Aug 2022
    You should take a look at DAP (Debug Adapter Protocol). There exist a Python module implementing this protocol (debugpy) and you can probably find some client applications that can hook into it (like this neovim plugin).

What are some alternatives?

When comparing rosco_m68k and debugpy you can also consider the following projects:

68k-nano - Minimal 68000-based single board computer

nvim-dap-python - An extension for nvim-dap, providing default configurations for python and methods to debug individual test methods or classes.

Unicorn Engine - Unicorn CPU emulator framework (ARM, AArch64, M68K, Mips, Sparc, PowerPC, RiscV, S390x, TriCore, X86)

nvim-dap - Debug Adapter Protocol client implementation for Neovim

megadev - A Sega Mega CD development framework in C and 68k asm

python-lsp-server - Fork of the python-language-server project, maintained by the Spyder IDE team and the community

ngdevkit - Open source development for Neo-Geo

mason-nvim-dap.nvim

omega - Omega Home Computer

nvim-config

eeprom-programmer - An Arduino Nano sketch and schematic for an Atmel 28cx programmer.

pdbpp - pdb++, a drop-in replacement for pdb (the Python debugger)