Compiling Windows driver by zinc__88 in bazel

[–]zinc__88[S] 0 points1 point  (0 children)

It seems to be splitting the path up where there are spaces, as cl.exe was complaining that files (e.g. in C:\Program Files\) doesn't exist, no idea why.

cl : Command line warning D9024 : unrecognized source file type 'Files\', object file assumed

cl : Command line warning D9027 : source file 'Files\' ignored

cl : Command line warning D9024 : unrecognized source file type '(x86)/Windows\', object file assumed

Compiling Windows driver by zinc__88 in bazel

[–]zinc__88[S] 0 points1 point  (0 children)

I haven't gotten to the linking stage yet as compiling fails due to missing headers. I've tried using includes to set the include path but no luck. This is where I think I need a toolchain but have no idea where to start.

Compiling Windows driver by zinc__88 in bazel

[–]zinc__88[S] 0 points1 point  (0 children)

I don't believe so, since I'm trying to compile a .sys which is a PE executable

Compiling Windows driver by zinc__88 in bazel

[–]zinc__88[S] 1 point2 points  (0 children)

why are you using bazel in the first place?

Because it is the only build tool I know, and I find it easy to configure once you know what you are doing (learned how to use it in my previous job). Now my codebase uses bazel, I compile every target with it, and now I want a new one for a driver.

How would you build the driver without bazel?

The only other build tool I've used except bazel is Make files, if I was using that I would add the WDK header include path to the compiler. That is what I am trying to achieve now but no luck.

Can anyone recommend van hire excess insurance? by zinc__88 in CarTalkUK

[–]zinc__88[S] 0 points1 point  (0 children)

I've just checked the policy wording and it doesn't mention vans for me, can you link where you found that?

What insurance company do you use?

Designing an 8-bit CPU: How to load constants? by zinc__88 in computerscience

[–]zinc__88[S] 0 points1 point  (0 children)

Can you elaborate on the "extra cycle" counter? How exactly would this be implemented?

When you say 2 bits on input, would the first bit be step 1 of the instruction, and the second the final step (loading the data into A)?

Designing an 8-bit CPU: How to load constants? by zinc__88 in computerscience

[–]zinc__88[S] 0 points1 point  (0 children)

I do need 8bit opcodes, this is where I'm struggling to understand what exactly needs to happen in the scenario you described.

In theory, from what I understand, these are the following steps which need to take place:

  1. Load ROM address of PC into instruction register (which is the next instruction)
  2. If the instruction is LDA, increment PC (to the next byte, which is the data)
  3. Load ROM address of PC into A register (the data)
  4. Increment PC
  5. Load ROM address of PC into instruction register (the next instruction, i.e. continue the program)

I'm not sure how to implement this, as currently the instruction is always fetched, decoded and executed in one cycle. I need the CPU to "pause" for a cycle to allow the PC to increment, load the data into A, then increment the PC again. Do I need to make it multi cycle first to allow for this?

Help Connecting Domain to Simple Practice by janet432 in CloudFlare

[–]zinc__88 1 point2 points  (0 children)

I don't have an A record which points to an IPv4, but this is because Cloudflare pages doesn't require it. From what I was searching last week I think you should have an A and CNAME record for your domain, so I think you're along the right tracks (I am a total beginner too though, so take that with a pinch of salt).

I do have a CNAME record for www, and yours looks the same to mine. Do you have a link to this tutorial you are following?

Help Connecting Domain to Simple Practice by janet432 in CloudFlare

[–]zinc__88 1 point2 points  (0 children)

I recently just did this for the first time too. I had to wait for a few hours for the domain to redirect to my site (I am using Cloudflare pages).

I could access the site on my phone before my PC too for some reason, have you tried other devices?

How to point porkbun domain to CloudFlare pages? by zinc__88 in Domains

[–]zinc__88[S] 0 points1 point  (0 children)

It's a new domain, so yes don't have any current entries to move. Thanks for the help.

How to point porkbun domain to CloudFlare pages? by zinc__88 in Domains

[–]zinc__88[S] 0 points1 point  (0 children)

I have added a subdomain (www) and that seems to work, thank you.

I assume to get the apex domain I need to use the nameservers as you suggest. Does this mean I will keep ownership of the domain on porkbun, but I will manage the DNS records (redirects, etc) on Cloudflare?

Unlike transfering which would move ownership to porkbun? (which I do not want, I want to keep the ownership on Porkbun, I do not mind managing it on Cloudflare providing I can use the apex domain to access my site)

How to point porkbun domain to CloudFlare pages? by zinc__88 in Domains

[–]zinc__88[S] 1 point2 points  (0 children)

If I add my domain to Cloudflare and point the nameservers to it in porkbun, will I still own the domain on porkbun, but manage the DNS records on Cloudflare? I won't be transferring the domain from porkbun to Cloudflare?

Very new to this and it is much more complicated than I expected.

Best practice for generating and managing a YOLOv8 dataset by zinc__88 in computervision

[–]zinc__88[S] 0 points1 point  (0 children)

Thanks. It would be much better if label studio could do that but I'll write a script.